Raspberry Pi Pico target (with sparkfun lora hat) does compile but needs further work.

Also contains a small fix to make PRIVATE_HW targets build again for nRF52 architectures
This commit is contained in:
Thomas Göttgens
2022-08-08 23:11:19 +02:00
parent 22a5cf04d3
commit 0c8fb6e27f
11 changed files with 179 additions and 6 deletions

View File

@@ -44,7 +44,7 @@ bool renameFile(const char* pathFrom, const char* pathTo)
void listDir(const char * dirname, uint8_t levels)
{
#ifdef FSCom
File root = FSCom.open(dirname);
File root = FSCom.open(dirname, FILE_O_READ);
if(!root){
return;
}
@@ -71,7 +71,7 @@ void listDir(const char * dirname, uint8_t levels)
void rmDir(const char * dirname)
{
#ifdef FSCom
File file = FSCom.open(dirname);
File file = FSCom.open(dirname, FILE_O_READ);
if(!file){
return;
}