Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
arduino-pico
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
arduino-pico
Commits
01743c86
Unverified
Commit
01743c86
authored
Mar 28, 2021
by
Earle F. Philhower, III
Committed by
GitHub
Mar 28, 2021
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #47 from earlephilhower/except
Fix Pyton on RPI, EEPROM start address in LD file
parents
4cf6d90a
9d9d9ebc
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
71 additions
and
71 deletions
+71
-71
boards.txt
boards.txt
+63
-63
package/package_pico_index.template.json
package/package_pico_index.template.json
+5
-5
tools/makeboards.py
tools/makeboards.py
+3
-3
No files found.
boards.txt
View file @
01743c86
This diff is collapsed.
Click to expand it.
package/package_pico_index.template.json
View file @
01743c86
...
...
@@ -126,10 +126,10 @@
"systems"
:
[
{
"host"
:
"arm-linux-gnueabihf"
,
"url"
:
"https://github.com/earlephilhower/pico-quick-toolchain/releases/download/1.
1.0-base/aarch64-linux-gnu.openocd-d58c2ef5e.210324
.tar.gz"
,
"archiveFileName"
:
"
aarch64-linux-gnu.openocd-d58c2ef5e.210324
.tar.gz"
,
"checksum"
:
"SHA-256:
46866ab64b7a36630d9435b94c57ce7790766425ba09f08187888879c25e1c97
"
,
"size"
:
"
6075925
"
"url"
:
"https://github.com/earlephilhower/pico-quick-toolchain/releases/download/1.
0.1-base/python3-via-env
.tar.gz"
,
"archiveFileName"
:
"
python3-via-env
.tar.gz"
,
"checksum"
:
"SHA-256:
c9237bfe0f62842d7187a39495baa4a7e3ab8b87c0b433614294b023cf0bc0f3
"
,
"size"
:
"
292
"
},
{
"host"
:
"x86_64-mingw32"
,
...
...
@@ -405,4 +405,4 @@
]
}
]
}
\ No newline at end of file
}
tools/makeboards.py
View file @
01743c86
...
...
@@ -12,9 +12,9 @@ def BuildFlashMenu(name, flashsize, fssizelist):
print
(
"%s.menu.flash.%s=%dMB (%s)"
%
(
name
,
mn
,
flashsize
/
(
1024
*
1024
),
fssizename
))
print
(
"%s.menu.flash.%s.upload.maximum_size=%d"
%
(
name
,
mn
,
flashsize
-
4096
-
fssize
))
print
(
"%s.menu.flash.%s.build.flash_length=%d"
%
(
name
,
mn
,
flashsize
-
4096
-
fssize
))
print
(
"%s.menu.flash.%s.build.eeprom_start=%d"
%
(
name
,
mn
,
flashsize
-
4096
))
print
(
"%s.menu.flash.%s.build.fs_start=%d"
%
(
name
,
mn
,
flashsize
-
4096
-
fssize
))
print
(
"%s.menu.flash.%s.build.fs_end=%d"
%
(
name
,
mn
,
flashsize
-
4096
))
print
(
"%s.menu.flash.%s.build.eeprom_start=%d"
%
(
name
,
mn
,
int
(
"0x10000000"
,
0
)
+
flashsize
-
4096
))
print
(
"%s.menu.flash.%s.build.fs_start=%d"
%
(
name
,
mn
,
int
(
"0x10000000"
,
0
)
+
flashsize
-
4096
-
fssize
))
print
(
"%s.menu.flash.%s.build.fs_end=%d"
%
(
name
,
mn
,
int
(
"0x10000000"
,
0
)
+
flashsize
-
4096
))
def
BuildDebugPort
(
name
):
print
(
"%s.menu.dbgport.Disabled=Disabled"
%
(
name
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment