From 11b3657959fd968eacd0b458e85f5307326c28d1 Mon Sep 17 00:00:00 2001 From: Shreeyash Pandey Date: Fri, 5 Aug 2022 16:43:56 +0530 Subject: [PATCH 1/2] demo.c generates uf2 and extra files Before this patch, cmake would crash when `pico_add_extra` option would be turned on because `TM1637_pico_test` is a un-defined target. This patch fixes it by replacing it with the current target. --- examples/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 982fd13..dba9cff 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -18,4 +18,4 @@ add_executable(TM1637_demo demo.c) target_link_libraries(TM1637_demo PicoTM1637 pico_stdlib) # Uncomment for .uf2 output -#pico_add_extra_outputs(TM1637_pico_test) +#pico_add_extra_outputs(TM1637_demo) From efcd81ec29860e9733fc73d600076add46a0c019 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Wahl=C3=A9n?= Date: Tue, 29 Nov 2022 16:17:12 +0100 Subject: [PATCH 2/2] Update CHANGELOG --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 868d097..8718a4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [1.2.1] - 2022-11-29 +## Fixed +- Fix compilation error when making .uf2 target in demo + ## [1.2.0] - 2021-06-15 ### Added - Ability to wait for everything to be sent to display with the `TM1637_wait()`