Skip to content

Commit 9554f42

Browse files
AstaRomawawa-dev
andauthored
Update development time (#17)
* Update development time * Update --------- Co-authored-by: Awawa <69086569+awawa-dev@users.noreply.github.com>
1 parent 5bf4754 commit 9554f42

11 files changed

+15
-17
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ if(NOT CMAKE_HOST_WIN32)
6262
string(ASCII 27 EscChar)
6363
set(ColorReset "${EscChar}[m")
6464
set(GreenColor "${EscChar}[32m")
65-
set(YellowColor "${EscChar}[33m")
65+
set(YellowColor "${EscChar}[33m")
6666
endif()
6767

6868
if (OVERRIDE_DATA_PIN)

LICENSE

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 awawa-dev
4-
5-
https://github.com/awawa-dev/HyperSerialPico
3+
Copyright (c) 2023-2024 awawa-dev
64

75
Permission is hereby granted, free of charge, to any person obtaining a copy
86
of this software and associated documentation files (the "Software"), to deal

include/base.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
* MIT License
44
*
5-
* Copyright (c) 2023 awawa-dev
5+
* Copyright (c) 2023-2024 awawa-dev
66
*
77
* https://github.com/awawa-dev/HyperSerialPico
88
*

include/calibration.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
* MIT License
44
*
5-
* Copyright (c) 2023 awawa-dev
5+
* Copyright (c) 2023-2024 awawa-dev
66
*
77
* https://github.com/awawa-dev/HyperSerialPico
88
*

include/framestate.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
* MIT License
44
*
5-
* Copyright (c) 2023 awawa-dev
5+
* Copyright (c) 2023-2024 awawa-dev
66
*
77
* https://github.com/awawa-dev/HyperSerialPico
88
*

include/leds.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* MIT License
66
*
7-
* Copyright (c) 2023 awawa-dev
7+
* Copyright (c) 2023-2024 awawa-dev
88
*
99
* https://github.com/awawa-dev/HyperSerialPico
1010
*
@@ -335,7 +335,7 @@ class Neopixel : public LedDriver, public DmaClient
335335

336336
smConfig = (timingType == NeopixelSubtype::ws2812b) ?
337337
neopixel_ws2812b_program_get_default_config(programAddress) : neopixel_program_get_default_config(programAddress);
338-
338+
339339
sm_config_set_sideset_pins(&smConfig, _pin);
340340
}
341341

@@ -501,7 +501,7 @@ class Dotstar : public LedDriver, public DmaClient
501501
dmaConfigure(pio0, 0);
502502
resetTime = _resetTime;
503503

504-
spi_init(_spi, 10000000);
504+
spi_init(_spi, 10000000);
505505
gpio_set_function(_clockpin, GPIO_FUNC_SPI);
506506
gpio_set_function(_datapin, GPIO_FUNC_SPI);
507507
bi_decl(bi_4pins_with_func(PICO_DEFAULT_SPI_RX_PIN, _datapin, _clockpin, PICO_DEFAULT_SPI_CSN_PIN, GPIO_FUNC_SPI));
@@ -538,7 +538,7 @@ class DotstarType : public Dotstar
538538
{
539539
public:
540540

541-
DotstarType(int _ledsNumber, spi_inst_t* _spi, int _dataPin, int _clockPin) :
541+
DotstarType(int _ledsNumber, spi_inst_t* _spi, int _dataPin, int _clockPin) :
542542
Dotstar(RESET_TIME, _ledsNumber, _spi, _dataPin, _clockPin, (_ledsNumber + 2) * sizeof(colorData))
543543
{
544544
}

include/main.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
* MIT License
44
*
5-
* Copyright (c) 2023 awawa-dev
5+
* Copyright (c) 2023-2024 awawa-dev
66
*
77
* https://github.com/awawa-dev/HyperSerialPico
88
*
@@ -140,7 +140,7 @@ void processData()
140140

141141
if (input == 0x15)
142142
printf(HELLO_MESSAGE);
143-
143+
144144
frameState.setRegroup(true);
145145

146146
delay(10);

include/statistics.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
* MIT License
44
*
5-
* Copyright (c) 2023 awawa-dev
5+
* Copyright (c) 2023-2024 awawa-dev
66
*
77
* https://github.com/awawa-dev/HyperSerialPico
88

pio/neopixel.pio

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; MIT License
22
;
3-
; Copyright (c) 2023 awawa-dev
3+
; Copyright (c) 2023-2024 awawa-dev
44
;
55
; https://github.com/awawa-dev/HyperSerialPico
66
;

pio/neopixel_ws2812b.pio

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; MIT License
22
;
3-
; Copyright (c) 2023 awawa-dev
3+
; Copyright (c) 2023-2024 awawa-dev
44
;
55
; https://github.com/awawa-dev/HyperSerialPico
66
;

source/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
* MIT License
44
*
5-
* Copyright (c) 2023 awawa-dev
5+
* Copyright (c) 2023-2024 awawa-dev
66
*
77
* https://github.com/awawa-dev/HyperSerialPico
88
*

0 commit comments

Comments
 (0)