-
-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR contains a few minor fixes relating to CI testing and documentation. There are no functional changes to the framework. **Documentation fixes** - Noticed that `:issue:` links don't work! Just a typo in the URL... - The `Storage` component API documentation contained everything from the FatIFS and DiskStorage libraries too since they live in the same namespace. I've broken things out a bit to avoid that. - Doxygen API index page isn't appearing at https://sming.readthedocs.io/en/latest/api/, just the placeholder page. The pages are all there but Sphinx hasn't overwritten the placeholder index.html as it should do. Fixed by adding a manual copy at end of sphinx build. Tested on readthedocs and locally. - Document `STRICT` setting and add upgrade note about Y2038 warning. - Add tips to vscode documentation. - Upgrade sphinx to latest 7.3.7 **Test fixes** - Simplify HostTests partition layout - Fix uf2conf python regex warning
- Loading branch information
Showing
15 changed files
with
169 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# generated documentation | ||
api | ||
build | ||
source/_inc | ||
*.pyc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,21 @@ | ||
{ | ||
"name": "Host Tests profile", | ||
"base_config": "spiffs", | ||
"devices": { | ||
"testDevice": { | ||
"type": "spiram", | ||
"size": "0x40000000" | ||
} | ||
}, | ||
"partitions": { | ||
"spiffs0": { | ||
"size": "0x10000", | ||
"filename": "" | ||
}, | ||
"fwfs0": { | ||
"fwfs_httprequest": { | ||
"address": "0x220000", | ||
"size": "0x40000", | ||
"size": "0x20000", | ||
"type": "data", | ||
"subtype": "fwfs", | ||
"filename": "$(FW_BASE)/fwfs0.bin", | ||
"build": { | ||
"target": "fwfs-build", | ||
"config": "fwfs0.json" | ||
} | ||
}, | ||
"external1": { | ||
"device": "testDevice", | ||
"address": 0, | ||
"size": "4M", | ||
"type": "data", | ||
"subtype": "spiffs", | ||
"filename": "$(FW_BASE)/test-spiffs.bin", | ||
"build": { | ||
"target": "spiffsgen", | ||
"files": "resource" | ||
} | ||
}, | ||
"external2": { | ||
"device": "testDevice", | ||
"address": "0x600000", | ||
"size": "240K", | ||
"type": "data", | ||
"subtype": 37 | ||
}, | ||
"external3": { | ||
"device": "testDevice", | ||
"address": "0x800000", | ||
"size": "240M", | ||
"type": "data", | ||
"subtype": "nvs" | ||
} | ||
} | ||
} |
Oops, something went wrong.