Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
ba742ed6
Commit
ba742ed6
authored
May 2, 2014
by
Damien George
Browse files
Options
Downloads
Patches
Plain Diff
Add shell script to automatically build stmhal/ for all pyboards.
parent
e276753b
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
stmhal/boards/PYBV3/mpconfigboard.h
+1
-1
1 addition, 1 deletion
stmhal/boards/PYBV3/mpconfigboard.h
tools/build-stm-latest.sh
+31
-0
31 additions, 0 deletions
tools/build-stm-latest.sh
with
32 additions
and
1 deletion
stmhal/boards/PYBV3/mpconfigboard.h
+
1
−
1
View file @
ba742ed6
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
#define MICROPY_HW_ENABLE_RTC (1)
#define MICROPY_HW_ENABLE_RTC (1)
#define MICROPY_HW_ENABLE_TIMER (1)
#define MICROPY_HW_ENABLE_TIMER (1)
#define MICROPY_HW_ENABLE_SERVO (1)
#define MICROPY_HW_ENABLE_SERVO (1)
#define MICROPY_HW_ENABLE_DAC (
0
)
#define MICROPY_HW_ENABLE_DAC (
1
)
#define MICROPY_HW_ENABLE_I2C1 (1)
#define MICROPY_HW_ENABLE_I2C1 (1)
#define MICROPY_HW_ENABLE_SPI1 (1)
#define MICROPY_HW_ENABLE_SPI1 (1)
#define MICROPY_HW_ENABLE_SPI3 (0)
#define MICROPY_HW_ENABLE_SPI3 (0)
...
...
This diff is collapsed.
Click to expand it.
tools/build-stm-latest.sh
0 → 100755
+
31
−
0
View file @
ba742ed6
#!/bin/bash
# check/get parameters
if
[
$#
!=
1
]
;
then
echo
"usage:
$0
<dest-dir>"
exit
1
fi
dest_dir
=
$1
# check we are in the correct directory
if
[
!
-r
modpyb.c
]
;
then
echo
"must be in stm directory"
exit
1
fi
# get the date
date
=
$(
date
'+%Y-%m-%d'
)
# get the git hash
git_hash
=
"
$(
git rev-parse
--short
HEAD 2> /dev/null
||
echo
unknown
)
"
# build the versions
for
board
in
PYBV3 PYBV10
;
do
echo
$board
lower_board
=
$(
echo
$board
|
tr
A-Z a-z
)
build_dir
=
/tmp/stm-build-
$lower_board
make
-B
BOARD
=
$board
BUILD
=
$build_dir
||
exit
1
mv
$build_dir
/flash.dfu
$dest_dir
/
$lower_board
-
$date
-
$git_hash
.dfu
rm
-rf
$build_dir
done
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment