-
I have tried moving the CS and PDN pins by add a #define at the top of EVE,h for all 5 pins, see below. I have tried multiple pin combinations, but the only way I can get anything to display on the screen is to use the defaults of 13 and 12 for CS and PDN. There are 2 issues with that.
Is there something I am missing? #define EVE_CS 32 |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
I figured it out. I added defines in the project properties and that fixed it. |
Beta Was this translation helpful? Give feedback.
-
Yes, this is maybe a little akward to use right now but it should be a lot easier now that I moved the target definitions out of EVE_target.h. What I should do now that the target definitions all have their own much smaller files is to change this: To this: #if !defined (EVE_PDN) To allow more atomic adaptions thru the project properties. And the goal for this is of course that you do not need to change any of the files so you do not have to do it again when you check these out again. |
Beta Was this translation helpful? Give feedback.
-
BTW - Here are the touch calibrations for the CFAF800480E1_050SC if you want to include them in tft.c #if defined (EVE_CFAF800480Ex_050SC_A2) |
Beta Was this translation helpful? Give feedback.
I figured it out. I added defines in the project properties and that fixed it.