Can I have some help (might be a bit over my head) #7
-
|
well, there a couple things i might be doing wrong
i set the #define DEFAULT_PIC_PORT in main.cpp to "/dev/ttyACM0" and it didnt change anything
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Nope, see the list of supported devices: // List of devices that are currently supported and their properties.
// Note: most of these are based on published information and have not
// been tested by the author. Patches welcome to improve the list.
//
// Please note that device names and device data are forced out into PROGMEM.
const char s_pic12f629[] PROGMEM = "pic12f629";
const char s_pic12f675[] PROGMEM = "pic12f675";
const char s_pic12f683[] PROGMEM = "pic12f683";
const char s_pic16f630[] PROGMEM = "pic16f630";
const char s_pic16f676[] PROGMEM = "pic16f676";
const char s_pic16f84[] PROGMEM = "pic16f84";
const char s_pic16f84a[] PROGMEM = "pic16f84a";
const char s_pic16f87[] PROGMEM = "pic16f87";
const char s_pic16f88[] PROGMEM = "pic16f88";
const char s_pic16f627[] PROGMEM = "pic16f627";
const char s_pic16f627a[] PROGMEM = "pic16f627a";
const char s_pic16f628[] PROGMEM = "pic16f628";
const char s_pic16f628a[] PROGMEM = "pic16f628a";
const char s_pic16f648a[] PROGMEM = "pic16f648a";
const char s_pic16f684[] PROGMEM = "pic16f684";
const char s_pic16f688[] PROGMEM = "pic16f688";
const char s_pic16f690[] PROGMEM = "pic16f690";
const char s_pic16f872[] PROGMEM = "pic16f872";
const char s_pic16f877[] PROGMEM = "pic16f877";
const char s_pic16f877a[] PROGMEM = "pic16f877a";
const char s_pic16f882[] PROGMEM = "pic16f882";
const char s_pic16f883[] PROGMEM = "pic16f883";
const char s_pic16f884[] PROGMEM = "pic16f884";
const char s_pic16f886[] PROGMEM = "pic16f886";
const char s_pic16f887[] PROGMEM = "pic16f887";
I use my PICkit2 together with pk2cmd, it supports PIC16F15213 and much more devices.
Did you install the correct udev rules file? |
Beta Was this translation helpful? Give feedback.
Nope, see the list of supported devices: