This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS: Libraries functions list

Other Parts Discussed in Thread: HALCOGEN

Tool/software: Code Composer Studio

Hello

I have just started to learn CCS and HalCoGen capabilities therefore have a pretty simple question - is there somewhere a list of integrated functions which can be used in the code? For example, manuallt browsing files created by HalCoGen I see that  for input - output capabilities in HL_gio.h file we have a set of function like below

/* GIO Interface Functions */
void gioInit(void);
void gioSetDirection(gioPORT_t *port, uint32 dir);
void gioSetBit(gioPORT_t *port, uint32 bit, uint32 value);
void gioSetPort(gioPORT_t *port, uint32 value);
uint32 gioGetBit(gioPORT_t *port, uint32 bit);
uint32 gioGetPort(gioPORT_t *port);
void gioToggleBit(gioPORT_t *port, uint32 bit);
void gioEnableNotification(gioPORT_t *port, uint32 bit);
void gioDisableNotification(gioPORT_t *port, uint32 bit);
void gioNotification(gioPORT_t *port, uint32 bit);
void gioGetConfigValue(gio_config_reg_t *config_reg, config_value_type_t type);

and in HL_gio.c is written how to use them. But is there a unified list or help file where these info can be found without jumping between different files in blind mode? And for example I have seen some "__delay" functions, but how to understand how many of them are exisits -  delay_cyc, delay_us, delay_ms etc ?