Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
7350ec5
Update to Pico-SDK 2.2.0 release
earlephilhower Jul 29, 2025
e00480b
Temporarialy remove -Werror on CI to get around SDK issue
earlephilhower Jul 29, 2025
26ca511
Add LIB_PICO_MULTICORE to libpico build
earlephilhower Aug 6, 2025
c441ac2
Try removing some bandaid -Wno
earlephilhower Aug 6, 2025
4ec71ca
Clean up some unused param warnings
earlephilhower Aug 6, 2025
d145963
Clean up more unused param warnings
earlephilhower Aug 6, 2025
57553b3
Fix olimex XL/XXL RP2350A redefinition
earlephilhower Aug 6, 2025
1426eea
Clean up SDK defines in IDE builds
earlephilhower Aug 6, 2025
ecd0df6
Temp turn off 2 SDK warnings
earlephilhower Aug 6, 2025
94272f7
Clean up build and re-intro -Werror in CI
earlephilhower Aug 6, 2025
0d94b37
Build LWIP at app compile time, no need for multi
earlephilhower Aug 6, 2025
bdf3cd2
Platform.IO build fixes
earlephilhower Aug 6, 2025
22ad092
Use platform_def files for p.io builds
earlephilhower Aug 7, 2025
47079e6
Clean up defines in p.io build
earlephilhower Aug 7, 2025
c493ab1
Allow for no PIN_LED for board variants
earlephilhower Aug 7, 2025
7912496
Merge branch 'master' into yetanothersdkupdate
earlephilhower Aug 7, 2025
636e23a
Fix non-CYW32 Ethernet connections
earlephilhower Aug 7, 2025
10fc694
Update Mozilla CCADB URL in CertStore example
earlephilhower Aug 7, 2025
818210d
Update TZ.h from ESP8266 repo
earlephilhower Aug 7, 2025
207f8f5
Re-enable BOOT2.S compiles in libpico
earlephilhower Aug 7, 2025
7c61791
Update LittleFS to latest release
earlephilhower Aug 7, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2,112 changes: 1,056 additions & 1,056 deletions boards.txt

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions cores/rp2040/SemiFS.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ class SemiFSFileImpl : public FileImpl {
}

bool truncate(uint32_t size) override {
(void) size;
return false; // Not allowed
}

Expand Down Expand Up @@ -215,6 +216,7 @@ class SemiFSImpl : public FSImpl {
}

DirImplPtr openDir(const char* path) override {
(void) path;
// No directories
return DirImplPtr();
}
Expand All @@ -229,6 +231,7 @@ class SemiFSImpl : public FSImpl {
}

bool info(FSInfo& info) override {
(void) info;
// Not available
return false;
}
Expand All @@ -241,11 +244,13 @@ class SemiFSImpl : public FSImpl {
}

bool mkdir(const char* path) override {
(void) path;
// No mkdir
return false;
}

bool rmdir(const char* path) override {
(void) path;
// No rmdir
return false;
}
Expand All @@ -271,6 +276,7 @@ class SemiFSImpl : public FSImpl {
}

bool setConfig(const FSConfig &cfg) override {
(void) cfg;
return true;
}

Expand Down
Loading
Loading