Other Parts Discussed in Thread: CC2650, ENERGIA, CC2650STK
Tool/software: Code Composer Studio
I would like to hook up the Educational Boosterpack MK II with the CC2650 LaunchPad to show something on the display (that is what I am most concerned about). I was trying to find any example files or anything of that nature to get that done in CCS. I see that there are examples on Energia, but I do not want to switch platforms. The project I am currently working on i2ctmp007_CC2650STK_TI seems to already have display drivers. I believe all I really have to do to set up the LCD is update these values for the CC2650 LaunchPad/BoosterPack combo.
#define Board_LCD_EXTCOMIN IOID_22 #define Board_LCD_EXTMODE IOID_28 #define Board_LCD_ENABLE IOID_29 #define Board_LCD_POWER PIN_UNASSIGNED #define Board_LCD_CS Board_SPI_DEVPK_CS #define Board_LCD_CS_ON 1 #define Board_LCD_CS_OFF 0
Am I correct on this assumption? And if so, what do I change these values to for my board? I am unsure what each of these parameters do.