File tree Expand file tree Collapse file tree 4 files changed +24
-1
lines changed Expand file tree Collapse file tree 4 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 44####
55
66cmake_minimum_required (VERSION 3.24.2)
7-
7+ # Patch in std-atomic implementations
8+ if (BOARD STREQUAL "rpi_pico" OR FPRIME_ZEPHYR_USE_STD_ATOMIC_FIX)
9+ include_directories (BEFORE "${CMAKE_CURRENT_LIST_DIR} /lib/fprime-zephyr/fprime-zephyr/Os/StdAtomic" )
10+ endif ()
811find_package (Zephyr HINTS "${CMAKE_CURRENT_LIST_DIR} /lib/zephyr-workspace" )
912project (fprime-zephyr-reference C CXX)
1013
Original file line number Diff line number Diff line change 1+ &zephyr_udc0 {
2+ cdc_acm_uart0: cdc_acm_uart0 {
3+ compatible = "zephyr,cdc-acm-uart";
4+ };
5+ };
6+
7+ / {
8+ chosen {
9+ zephyr,console = &cdc_acm_uart0;
10+ };
11+ };
Original file line number Diff line number Diff line change 1+ command-line-options :
2+ communication-selection : uart
3+ uart-baud : 115200
4+ no-app :
5+
Original file line number Diff line number Diff line change 88CONFIG_USB_DEVICE_PID=0x000F
99CONFIG_USB_DEVICE_VID=0x2E8A
1010
11+ #### From Raspberry Pi Pico USB Definitions ####
12+ # CONFIG_USB_DEVICE_PID=0x0003
13+ # CONFIG_USB_DEVICE_VID=0x2E8A
14+
1115#### F Prime C++ Dependencies ####
1216CONFIG_CPP=y
1317CONFIG_REQUIRES_FULL_LIBCPP=y
You can’t perform that action at this time.
0 commit comments