Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
e2b7fe3
Merge branch 'main' of https://github.com/adafruit/circuitpython into…
askpatrickw Oct 22, 2020
e2c833a
Merge branch 'main' of https://github.com/adafruit/circuitpython into…
askpatrickw Oct 23, 2020
3d5c77c
Merge pull request #35 from adafruit/main
DavePutz Dec 10, 2020
1d37d3f
Merge branch 'main' of https://github.com/adafruit/circuitpython into…
askpatrickw Dec 15, 2020
10d735d
Merge branch 'main' of https://github.com/adafruit/circuitpython into…
askpatrickw Dec 16, 2020
737828c
Merge branch 'main' of https://github.com/adafruit/circuitpython into…
askpatrickw Dec 22, 2020
f814a34
Merge branch 'main' of https://github.com/adafruit/circuitpython into…
askpatrickw Dec 22, 2020
9c14593
Merge pull request #36 from adafruit/main
DavePutz Dec 28, 2020
9e559ac
Merge branch 'main' of https://github.com/adafruit/circuitpython into…
askpatrickw Jan 1, 2021
43f93b0
release and pre-release FeatherS2 NSync
askpatrickw Jan 1, 2021
220501e
dupe LED entries
askpatrickw Jan 1, 2021
2ce0720
changes based on UM's input
askpatrickw Jan 2, 2021
9d5587f
Translated using Weblate (Indonesian)
oonid Jan 2, 2021
8c8961a
Merge pull request #3 from adafruit/main
bwshockley Jan 3, 2021
9286f26
Added CP Dotstart Lib to Build
bwshockley Jan 3, 2021
d0e5499
Merge pull request #3914 from askpatrickw/feathers2-Nsync
ladyada Jan 3, 2021
d8721e3
Merge branch 'origin/main' into Weblate.
weblate Jan 3, 2021
2a5f3de
Merge pull request #3608 from adafruit/6.0.x
jepler Oct 27, 2020
10f178d
Fixed incorrect pin assignment on header
UnexpectedMaker Jan 3, 2021
46ec95d
Merge pull request #3925 from UnexpectedCircuitPython/main
ladyada Jan 4, 2021
dfcdad3
Merge branch 'origin/main' into Weblate.
weblate Jan 4, 2021
dcf88e1
Merge pull request #3923 from bwshockley/Add_dotstar_mini_sam_m4
ladyada Jan 4, 2021
4a9f33a
Merge branch 'origin/main' into Weblate.
weblate Jan 4, 2021
09bf584
ulab: update to 1.6.0
jepler Jan 4, 2021
f87ce01
make translate
jepler Jan 4, 2021
f6f1ef7
Merge pull request #3929 from jepler/update-ulab3
dhalbert Jan 4, 2021
d2c71fd
Merge branch 'origin/main' into Weblate.
weblate Jan 4, 2021
4135ccb
Update translation files
weblate Jan 4, 2021
bbd4de3
Add adafruit_bus_device to CPX builds.
kattni Jan 4, 2021
76e9f49
Merge pull request #37 from adafruit/main
DavePutz Jan 4, 2021
ce55822
Fix size of memset in board_reset_user_neopixels()
DavePutz Jan 4, 2021
69de4f9
Merge pull request #3932 from kattni/circuit-playground-bus-device
dhalbert Jan 5, 2021
0057e1d
Translated using Weblate (Portuguese (Brazil))
wtuemura Jan 5, 2021
7943272
Translated using Weblate (Swedish)
bergdahl Jan 4, 2021
03a6db3
Merge branch 'origin/main' into Weblate.
weblate Jan 5, 2021
9eb2ca0
Update translation files
weblate Jan 5, 2021
590fe8e
Merge pull request #3934 from DavePutz/issue_3807
dhalbert Jan 5, 2021
8c25f54
Merge branch 'origin/main' into Weblate.
weblate Jan 5, 2021
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
Prev Previous commit
Next Next commit
Fix size of memset in board_reset_user_neopixels()
  • Loading branch information
DavePutz authored Jan 4, 2021
commit ce55822680b3b4005f370bbd735d50402cd48925
2 changes: 1 addition & 1 deletion supervisor/shared/board.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
void board_reset_user_neopixels(const mcu_pin_obj_t* pin, size_t count) {
// Turn off on-board NeoPixel string
uint8_t empty[count * 3];
memset(empty, 0, count);
memset(empty, 0, count * 3);
digitalio_digitalinout_obj_t neopixel_pin;
common_hal_digitalio_digitalinout_construct(&neopixel_pin, pin);
common_hal_digitalio_digitalinout_switch_to_output(&neopixel_pin, false,
Expand Down