You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For each new Energia release, we need to update the explicit list of supported boards. For example, MSP432 is not in the current Screen_HX8353E.cpp file as a supported board, thus compilation fails. However, by simply adding it to the #if defined() section, it works just fine.
The text was updated successfully, but these errors were encountered:
The #if defined() is required to check the LaunchPad has a 40-pin BoosterPack connector, as _pinDataCommanduses pin 31.
Now, we could define another set of variables for the BoosterPack capability to each LaunchPad, for example HAS_20_PIN_BOOSTERPACK and HAS_40_PIN_BOOSTERPACK.
The resulting Screen_HX8353E.cpp would be then
#if defined(HAS_40_PIN_BOOSTERPACK)
// ...
#else
#error Platform not supported
#endif
This would ease the test and save updates every-time a new LaunchPad is available.
For each new Energia release, we need to update the explicit list of supported boards. For example, MSP432 is not in the current Screen_HX8353E.cpp file as a supported board, thus compilation fails. However, by simply adding it to the #if defined() section, it works just fine.
The text was updated successfully, but these errors were encountered: