-
Notifications
You must be signed in to change notification settings - Fork 50
/
CMakeLists.txt
84 lines (71 loc) · 2.22 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# Generated Cmake Pico project file
#
# After changing this file, empty the build folder and execute from there:
# cmake -G "Ninja" ..
#
cmake_minimum_required(VERSION 3.13)
set(CMAKE_C_STANDARD 11)
set(CMAKE_CXX_STANDARD 17)
# initalize pico_sdk from installed location
# (note this can come from environment, CMake cache etc)
set(PICO_SDK_PATH "C:/Users/Arjan/Documents/Pico-new/SDKv1.5.1/pico-sdk")
# Pull in Raspberry Pi Pico SDK (must be before project)
include(${PICO_SDK_PATH}/external/pico_sdk_import.cmake)
project(uSDR-Pico C CXX ASM)
# Initialise the Raspberry Pi Pico SDK
pico_sdk_init()
# Add executable. Default name is the project name, version 0.1
# uSDR.c main loop and initialisation of the software
# lcd.c LCD driver stuff; pay attention, X different HW implementations exist
# si5351.c The drivers for setting output frequency and phase in the SI5351 chip
# dsp.c The signal processing stuff, either timedomain or frequency domain
# fix_fft.c The FFT transformations in fixed point format
# hmi.c All user interaction, controlling freq, modulation, levels, etc
# monitor.c A tty shell on a serial interface
# relay.c Switching for the band filter and attenuator relays
# font?.c Graphical character fonts
add_executable(uSDR-Pico
uSDR.c
lcd.c
si5351.c
dsp.c
fix_fft.c
hmi.c
monitor.c
relay.c
font7spp.c
font8.c
font16.c
font20.c
font24.c
fontub.c
fontubb.c
fontAR.c
fontGR.c
fontSYM32.c
fontSYM16.c
)
target_compile_options(uSDR-Pico PRIVATE -Wall)
pico_set_program_name(uSDR-Pico "uSDR-Pico")
pico_set_program_version(uSDR-Pico "4.0")
# Pull in our pico_stdlib which aggregates commonly used features
target_link_libraries(uSDR-Pico pico_stdlib)
# Disable uart output, enable usb output
pico_enable_stdio_uart(uSDR-Pico 0)
pico_enable_stdio_usb(uSDR-Pico 1)
# Add any user requested libraries
target_link_libraries(uSDR-Pico
pico_stdlib
pico_multicore
hardware_i2c
hardware_spi
hardware_pwm
hardware_gpio
hardware_timer
hardware_clocks
hardware_pll
hardware_adc
hardware_dma
)
# create map/bin/hex/uf2 file in addition to ELF.
pico_add_extra_outputs(uSDR-Pico)