File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(16x2_display main.cpp ../../LCD_I2C.cpp)
22
33# Add program info
44pico_set_program_name(16x2_display "Liquid Crystal Display I2C Library - 16x2 LCD Example" )
5- pico_set_program_version(16x2_display "1.0.1 " )
5+ pico_set_program_version(16x2_display "1.0.2 " )
66pico_set_program_url(16x2_display "https://github.com/cristiancristea00/Pico-I2C-LCD/tree/main/examples/16x2-Display" )
77pico_set_program_description(16x2_display "Copyright (c) 2021 Cristian Cristea" )
88
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(20x4_display main.cpp ../../LCD_I2C.cpp)
22
33# Add program info
44pico_set_program_name(20x4_display "Liquid Crystal Display I2C Library - 20x4 LCD Example" )
5- pico_set_program_version(16x2_display "1.0.1 " )
5+ pico_set_program_version(16x2_display "1.0.2 " )
66pico_set_program_url(20x4_display "https://github.com/cristiancristea00/Pico-I2C-LCD/tree/main/examples/20x4-Display" )
77pico_set_program_description(20x4_display "Copyright (c) 2021 Cristian Cristea" )
88
Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ set(CMAKE_CXX_FLAGS_DEBUG "-pipe -g -O0 -Wfatal-errors -Wpedantic -Wall -Wextra
1919set (CMAKE_C_FLAGS_DEBUG "-pipe -g -O0 -Wfatal-errors -Wpedantic -Wall -Wextra -Wconversion -Wshadow=local -Wdouble-promotion -Wformat=2 -Wformat-overflow=2 -Wformat-nonliteral -Wformat-security -Wformat-truncation=2 -Wnull-dereference -Wimplicit-fallthrough=3 -Wshift-overflow=2 -Wswitch-default -Wunused-parameter -Wunused-const-variable=2 -Wstrict-overflow=4 -Wstringop-overflow=3 -Wsuggest-attribute=pure -Wsuggest-attribute=const -Wsuggest-attribute=noreturn -Wmissing-noreturn -Wsuggest-attribute=malloc -Wsuggest-attribute=format -Wmissing-format-attribute -Wsuggest-attribute=cold -Walloc-zero -Walloca -Wattribute-alias=2 -Wduplicated-branches -Wcast-qual" )
2020
2121# Set Release build compiler arguments
22- set (CMAKE_CXX_FLAGS_RELEASE "-pipe -O2 -fno-builtin" )
23- set (CMAKE_C_FLAGS_RELEASE "-pipe -O2 -fno-builtin" )
22+ set (CMAKE_CXX_FLAGS_RELEASE "-pipe -Os -fno-builtin" )
23+ set (CMAKE_C_FLAGS_RELEASE "-pipe -Os -fno-builtin" )
2424
2525# Initialise the Raspberry Pi Pico SDK
2626pico_sdk_init()
You can’t perform that action at this time.
0 commit comments