In page How to Run a Hello World on the Cortex-M there is a code snippet in the section Run the Firmware.
This code snippet has a typo and it cannot be compiled as it is.
Line
uint8_t c = 0;
should be changed to
uint8_t count = 0;
since the variable is called count
in the following lines.