File tree Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ cmake_minimum_required(VERSION 3.17)
29
29
set (PROJECT_NAME usbsidpico )
30
30
set (PROJECT_MANUFACTURER "LouD" )
31
31
set (PRODUCT_STRING "USBSID-Pico" )
32
- set (MAGIC_SMOKE "20241120 " )
33
- set (PROJECT_VERSION "0.2.2 -BETA.${MAGIC_SMOKE} " ) # Must be the same as in config.h
32
+ set (MAGIC_SMOKE "20241208 " )
33
+ set (PROJECT_VERSION "0.2.3 -BETA.${MAGIC_SMOKE} " ) # Must be the same as in config.h
34
34
35
35
### Want a cookie?
36
36
# NOTICE: ENABLING THESE DEBUGGING DEFINITIONS WILL HAVE SIGNIFICANT IMPACT AND WILL DELAY PLAYING!
@@ -67,8 +67,15 @@ endif()
67
67
if (DEFINED PICO_PLATFORM )
68
68
message ("PICO_PLATFORM is defined as ${PICO_PLATFORM} " )
69
69
else ()
70
- message ("PICO_PLATFORM not defined, defaulting to 'rp2040'" )
71
- set (PICO_PLATFORM rp2040 )
70
+ if (DEFINED PICO_BOARD )
71
+ if (PICO_BOARD STREQUAL "pico2" )
72
+ set (PICO_PLATFORM rp2350 )
73
+ message ("PICO_PLATFORM not defined, board is ${PICO_BOARD} setting PICO_PLATFORM to ${PICO_PLATFORM} " )
74
+ endif ()
75
+ else ()
76
+ message ("PICO_PLATFORM not defined, defaulting to 'rp2040'" )
77
+ set (PICO_PLATFORM rp2040 )
78
+ endif ()
72
79
endif ()
73
80
74
81
### Target product & output filename
Original file line number Diff line number Diff line change 55
55
#define MAGIC_SMOKE 19700101 /* DATEOFRELEASE */
56
56
#endif
57
57
#ifndef PROJECT_VERSION
58
- #define PROJECT_VERSION "0.2.2 -BETA.20241120 " /* Must be the same as in CMakeLists.txt */
58
+ #define PROJECT_VERSION "0.2.3 -BETA.20241208 " /* Must be the same as in CMakeLists.txt */
59
59
#endif
60
60
61
61
#ifdef PICO_DEFAULT_LED_PIN
You can’t perform that action at this time.
0 commit comments