This is an old revision of the document!
GPIO over CPLD
Each of the 4 GPIO ports contains 8 ouput and 8 input pins. The ports are not as fast as the integrated GPIO ports of the microcontroller.
Programming Example
The code snippet bellow shows how to use the GPIO.
#include "reg_ctboard.h" uint8_t data_byte = CT_GPIO->IN.BYTE.P1; /* Read byte from P1. */ uint16_t data_hword = CT_GPIO->IN.HWORD.P2_1; /* Read half word from P1 and P2. */ uint32_t data_word = CT_GPIO->IN.WORD; /* Read word from all ports (P1..4). */ CT_GPIO->OUT.BYTE.P3 = (uint8_t) data_byte; /* Write byte of data to P3. */ CT_GPIO->OUT.HWORD.P4_3 = (uint16_t) data_halfword; /* Write halfword of data to P3..4 */ CT_GPIO->OUT.WORD = (uint32_t) data_word; /* Write data to all ports (P1..4). */