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.
I'm just getting started on programming my new TivaC lauchpad and I have one question
I'm aware that the APIs and some initializations are in the TivaWare Peripheral Driver Library User's Guide.
here's a prototype:
GPIOPinWrite(uint32_t ui32Port, uint8_t ui8Pins, uint8_t ui8Val)
And then, when I see some example code I get this:
GPIOPinWrite(GPIO_PORTF_BASE, GPIO_PIN_1|GPIO_PIN_2|GPIO_PIN_3, ui8PinData);
Where do I find a list or a document including all the commands such as the ones in blue (like GPIO_PIN_1 or GPIO_PORTF_BASE)?