mirror of
https://github.com/Fishwaldo/OBLFR.git
synced 2025-03-16 03:41:44 +00:00
* Update Readme * Port the IRQ_Forward Code to a component So it can be used in any M0 firmware * update d0_lowload to use new IRQ forwarding code * Enable Ethernet, USB, and GPIO forwarding as well * add RPMSG component * Fix crash if there are no timers registered. * Update rpmsg and mailbox code for latest kernel updates
10 lines
583 B
CMake
10 lines
583 B
CMake
sdk_add_subdirectory_ifdef(CONFIG_COMPONENT_SYSTEM oblfr)
|
|
#if we do not include the SYSTEM component, we need to at add the include directory */
|
|
sdk_add_include_directories_ifndef(CONFIG_COMPONENT_SYSTEM_OBLFR oblfr/include)
|
|
|
|
sdk_add_subdirectory_ifdef(CONFIG_COMPONENT_BUTTON button)
|
|
sdk_add_subdirectory_ifdef(CONFIG_COMPONENT_STATUS_LED indicator)
|
|
sdk_add_subdirectory_ifdef(CONFIG_COMPONENT_TIMER timer)
|
|
sdk_add_subdirectory_ifdef(CONFIG_COMPONENT_NVKVS nvkvs)
|
|
sdk_add_subdirectory_ifdef(CONFIG_COMPONENT_RPMSG rpmsg)
|
|
sdk_add_subdirectory_ifdef(CONFIG_COMPONENT_MAILBOX mailbox)
|