This repository has been archived by the owner on Apr 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Program targets now depend on the relevent build target. - Make EXE file name sourcing consistent across the flows. - Bump acquisition framework. - Initialise scass config in BSP uas_main function. On branch master Changes to be committed: modified: Makefile modified: Makefile.build modified: Makefile.common new file: Makefile.program modified: external/fw-acquisition modified: target/sakurax_mb3/program/program.mk modified: target/sakurax_mb5/program/program.mk modified: target/sakurax_mb8/program/program.mk modified: target/sakurax_picorv32/program/program.mk modified: target/scale_lpc1114fn28/program/program.mk modified: target/scale_lpc1313fbd48/program/program.mk modified: target/scale_lpc812m101/program/program.mk modified: target/share/uas_main.c
- Loading branch information
1 parent
a6aeeb2
commit a931936
Showing
13 changed files
with
80 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
include $(UAS_ROOT)/Makefile.common | ||
|
||
# | ||
# include the makefile which *should* contain a target called "program", | ||
# specific to the current target device. | ||
include $(call map_target_program_makefile) | ||
|
Submodule fw-acquisition
updated
3 files
+12 −6 | bin/device-test.py | |
+13 −14 | scass/comms/Target.py | |
+6 −0 | target/scass/scass_target.c |
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,4 +1,4 @@ | ||
|
||
program: $(HEX_OUT) | ||
program: $(call map_experiment_hex) | ||
lpc21isp -wipe -hex $< $(USB_PORT) $(USB_BAUD) 12000 | ||
|
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,4 +1,4 @@ | ||
|
||
program: $(HEX_OUT) | ||
program: $(call map_experiment_hex) | ||
lpc21isp -wipe -hex $< $(USB_PORT) $(USB_BAUD) 12000 | ||
|
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,4 +1,4 @@ | ||
|
||
program: $(HEX_OUT) | ||
program: $(call map_experiment_hex) | ||
lpc21isp -wipe -hex $< $(USB_PORT) $(USB_BAUD) 12000 | ||
|
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