2020-11-16 04:01 AM
The first non-comment line in every LL source file is:
#if defined(USE_FULL_LL_DRIVER)
This is above any #include lines, which means that if you want to use LL drivers, you must define USE_FULL_LL_DRIVER in your project settings.
To avoid a proliferation of defines in project settings, we'd prefer to at least have the option to define this in a header which is ultimately included in the LL driver files. This is already possible for the HAL files and USE_HAL_DRIVER.
Therefore, can I request that the above line is moved below any #include lines in all LL source files?