Hi there!
I tried to program my display with a PICKit3 via ICSP. After the voltage configuration (Power target circuit from tool) i loaded the .hex compiled with UECIDE. Now the display don`t work and i can`t re-program it with UECIDE `cause i don`t have the bootloader. I tried to download the bootloader from the product page in the 4DSystems site but when i click the link it open a webpage with the code.
Maybe i miss something during the process, i have not found tips or tutorial online for this.
UECIDE v. 0.8.7z36
TFT Library
Picadillo35t board plugin installed
Is right take the .hex and flash the device with it?
My problem now, after few tries, is that the program stop during the display initialization
If i change the value "programData.displayBrightness" i`ll see it after a new programming, and the fillScreen function is not executed. Did i broke in some way the display?
Thanks
I tried to program my display with a PICKit3 via ICSP. After the voltage configuration (Power target circuit from tool) i loaded the .hex compiled with UECIDE. Now the display don`t work and i can`t re-program it with UECIDE `cause i don`t have the bootloader. I tried to download the bootloader from the product page in the 4DSystems site but when i click the link it open a webpage with the code.
Maybe i miss something during the process, i have not found tips or tutorial online for this.
UECIDE v. 0.8.7z36
TFT Library
Picadillo35t board plugin installed
Is right take the .hex and flash the device with it?
My problem now, after few tries, is that the program stop during the display initialization
Code:
void setup() { ts.initializeDevice(); // These set the touch screen resolution. ts.scaleX(4.4); ts.scaleY(3.3); programData.displayBrightness = 35; analogWrite(PIN_BACKLIGHT, programData.displayBrightness); tft.initializeDevice(); tft.setRotation(0); tft.fillScreen(0x6CB7); }
Thanks
Comment