How do I get the "Generate Code" to create HAL GPIO pins?
I've just finished the tutorials on MP1 and have built a few Nucleo projects. When I want to use a GPIO pin on the Nucleo board I go o the ioc file, name a pin and hit Project > Generate Code, and I'll see the pins at the bottom of my Core > main.c file, but when I do that in a new project for the MP1, I don't see anything added to the project.
Further, if I search the entire directory for the name of the pin "HEATER" in my case, I don't see it anywhere else but the ioc file.
```
$ grep -rnw . -e 'HEATER'
./test.ioc:647:PA10.GPIO_Label=HEATER
```
What am I doing wrong?
