Hi
I was wondering whether it is possible to generate additional .c/.h files with the MCUXpresso Config Tool?
So what I have in mind, the MCUXpresso Config Tool already generates very nice pin_mux.h header files including all the symbols for PORTs and GPIOs. E.g. for the GPIO where my red LED is connected to:
#define BOARD_INITPINS_LED_RED_GPIO GPIO0 /*!<@brief GPIO peripheral base pointer */
With that I would like to generate an additional header file containing same symbols as in pin_mux.h, but with a typecast:
#define LED_RED_PORT (GPIO::Port*)BOARD_INITPINS_LED_RED_GPIO
I fear MCUXpresso Config Tool isn't that flexible. But what do you think, are there any other good approaches/tools to generate such header files each time I run the code generator in MCUXpresso Config Tool?
Best,
THE0