How to configure eos for a custom ARM Cortex-M board? #23
-
|
I have a custom ARM Cortex-M4 board and want to add BSP support in eos. What files need to be created and what is the recommended directory structure? |
Beta Was this translation helpful? Give feedback.
Admin verified this answer by
srpatcha
Apr 25, 2026
Replies: 1 comment
-
|
To add BSP support for a custom ARM Cortex-M4 board in eos:
Example structure: See the existing boards for reference patterns. The build system will auto-detect the new board once registered in the catalog. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To add BSP support for a custom ARM Cortex-M4 board in eos:
ebuild/boards/your_board_name/board.ymlwith CPU architecture, memory map, and peripheral configlinker.ldfor your specific memory layouthal_init.c(clock, GPIO, UART setup)ebuild/boards/catalog.jsonExample structure:
See the existing boards for reference patterns. The build system will auto-detect the new board once registered in the catalog.