Skip to content

Commit

Permalink
Merge branch 'release/1.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
howardjp committed Dec 27, 2022
2 parents 11e0065 + bc08cd2 commit c119783
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ set(CMAKE_TOOLCHAIN_FILE ${CMAKE_SOURCE_DIR}/cmake/generic-gcc-avr.cmake)
##########################################################################
# define the project
##########################################################################
project(cmake-avr C CXX ASM)
project(ws2812b-spi-controller ASM)

##########################################################################
# status messages
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# WS2818B SPI Controller for ATtiny85
# WS2812b SPI Controller for ATtiny85

This code for a WS2818B SPI controller using the
This code for a WS2812b SPI controller using the
[ATtiny85](https://www.microchip.com/wwwproducts/en/ATtiny85). It
is loosely based on the [ATtiny10 Neopixel controller by Wayne
Holder](https://sites.google.com/site/wayneholder/besting-ben-heck).
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
SET(CMAKE_ASM_LINK_LIBRARY_FLAG "-nostartfiles -nostdlib -nodefaultlibs")
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${CMAKE_ASM_LINK_LIBRARY_FLAG}")

add_avr_executable(ws2818b-spi-controller-firmware main.S)
add_avr_executable(${PROJECT_NAME}-firmware main.S)
2 changes: 1 addition & 1 deletion src/main.S
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
; CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
; SOFTWARE.

; WS2818b SPI controller using the ATtiny85. This is loosely based on
; WS2812b SPI controller using the ATtiny85. This is loosely based on
; the ATtiny10 Neopixel controller by Wayne Holder and available at
; https://sites.google.com/site/wayneholder/besting-ben-heck
;
Expand Down

0 comments on commit c119783

Please sign in to comment.