Skip to content

Commit 5df4c86

Browse files
authored
Merge branch 'adafruit:main' into main
2 parents 137aa83 + 9743aea commit 5df4c86

File tree

271 files changed

+4290
-2055
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

271 files changed

+4290
-2055
lines changed

.github/workflows/create_website_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ jobs:
4242
working-directory: tools
4343
env:
4444
RELEASE_TAG: ${{ github.event.release.tag_name }}
45-
ADABOT_GITHUB_ACCESS_TOKEN: ${{ secrets.BLINKA_GITHUB_ACCESS_TOKEN }}
45+
ADABOT_GITHUB_ACCESS_TOKEN: ${{ secrets.ADABOT_GITHUB_ACCESS_TOKEN }}
4646
if: github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested')

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,9 @@
196196
url = https://github.com/raspberrypi/rpi-firmware.git
197197
branch = master
198198
shallow = true
199+
[submodule "lib/adafruit_floppy"]
200+
path = lib/adafruit_floppy
201+
url = https://github.com/adafruit/Adafruit_Floppy
199202
[submodule "ports/stm/st_driver/cmsis_device_f4"]
200203
path = ports/stm/st_driver/cmsis_device_f4
201204
url = https://github.com/STMicroelectronics/cmsis_device_f4.git

conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
]
8484

8585
# Add any paths that contain templates here, relative to this directory.
86-
templates_path = ['templates']
86+
templates_path = ['templates', "docs/templates"]
8787

8888
# The suffix of source filenames.
8989
source_suffix = {

extmod/vfs_fat.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ STATIC const mp_obj_property_t fat_vfs_label_obj = {
440440
.base.type = &mp_type_property,
441441
.proxy = {(mp_obj_t)&fat_vfs_getlabel_obj,
442442
(mp_obj_t)&fat_vfs_setlabel_obj,
443-
(mp_obj_t)MP_ROM_NONE},
443+
MP_ROM_NONE},
444444
};
445445
#endif
446446

0 commit comments

Comments
 (0)