Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
04daeeb
Convert C++ code to C (keeping .cpp extension temporarily)
livingkurt Oct 17, 2025
1b12a3c
Rename .cpp files to .c files
livingkurt Oct 17, 2025
851a8c7
Fix timer_t conflict and add extern C guards for CLI compatibility
livingkurt Oct 16, 2025
ba79b2e
Fix POSIX function declarations for Linux compatibility
livingkurt Oct 16, 2025
aa96f65
Refactor Helios state management and color selection logic; update gl…
livingkurt Oct 17, 2025
495100a
Increase CLI input queue size to 4096 for handling longer test sequen…
livingkurt Oct 17, 2025
148195e
Increase CLI input queue size to 8192 to accommodate longer test sequ…
livingkurt Oct 17, 2025
befc15d
Added Claude.md file
livingkurt Oct 17, 2025
afa3629
Refactor pattern argument handling by removing fade duration; update …
livingkurt Oct 17, 2025
733290c
Merge branch 'master' into master-c
livingkurt Oct 17, 2025
9ab0b0a
Update HeliosConfig.h to correct storage size calculations for patter…
livingkurt Oct 17, 2025
76f832a
Refactor helios_handle_off_menu to replace break with return for impr…
livingkurt Oct 17, 2025
ca18241
Add new Helios components: Button, Colorset, Colortypes, Helios, Led,…
livingkurt Oct 17, 2025
e000bf0
Refactor Makefile for HeliosCLI and HeliosEmbedded: update compiler s…
livingkurt Oct 17, 2025
6fc0d17
Remove C11 standard flag from Makefile for HeliosEmbedded to streamli…
livingkurt Oct 17, 2025
7f8ccf0
Update .gitignore to include additional file patterns for tests and c…
livingkurt Oct 17, 2025
27ad9d7
Update Makefile for HeliosCLI to exclude virtual environment files fr…
livingkurt Oct 17, 2025
5a575d8
Remove FLAG_AUTOPLAY from Helios state machine and update related doc…
livingkurt Oct 17, 2025
8cb7a6b
Revert comment style changes back to C++ style comments
livingkurt Oct 18, 2025
db48e42
Convert remaining C-style comments to C++ style comments including mu…
livingkurt Oct 18, 2025
2af7d9e
Update comments in main.cpp to use C++ style comments for consistency…
livingkurt Oct 18, 2025
2fb496c
Add comments to Button.cpp for clarity on button state checking and l…
livingkurt Oct 18, 2025
4401ac7
Update comments in Button.cpp to clarify input queue functionality an…
livingkurt Oct 18, 2025
fe98d93
Add missing comment before colorset_get function
livingkurt Oct 18, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
!*.atsln
!*.componentinfo.xml
!*.cppproj

!*.github/workflows/**
# Ignore object files, dependency files, and other build artifacts
*.o
*.d
Expand All @@ -37,3 +37,7 @@

!**/Makefile


!*.test

!*.conf
Loading
Loading