-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #605 from OpenEVSE/divert_sim_update
Updates to build the divert_sim again
- Loading branch information
Showing
33 changed files
with
1,872 additions
and
124 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | ||
|
||
name: Build OpenEVSE divert simulator | ||
|
||
permissions: | ||
contents: write | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
path: OpenEVSE_WiFi | ||
|
||
- uses: actions/checkout@v3 | ||
with: | ||
repository: JeremyPoulter/MicroDebug | ||
path: MicroDebug | ||
|
||
- uses: actions/checkout@v3 | ||
with: | ||
repository: JeremyPoulter/MicroTasks | ||
path: MicroTasks | ||
|
||
- uses: actions/checkout@v3 | ||
with: | ||
repository: JeremyPoulter/StreamSpy | ||
path: StreamSpy | ||
|
||
- uses: actions/checkout@v3 | ||
with: | ||
repository: JeremyPoulter/ConfigJson | ||
path: ConfigJson | ||
|
||
- uses: actions/checkout@v3 | ||
with: | ||
repository: bblanchon/ArduinoJson | ||
path: ArduinoJson | ||
ref: v6.20.1 | ||
|
||
- uses: actions/checkout@v3 | ||
with: | ||
repository: JeremyPoulter/OpenEVSE_Lib | ||
path: OpenEVSE_Lib | ||
|
||
- uses: actions/checkout@v3 | ||
with: | ||
repository: JeremyPoulter/EpoxyDuino | ||
path: EpoxyDuino | ||
|
||
- uses: actions/checkout@v3 | ||
with: | ||
repository: JeremyPoulter/ESPAL | ||
path: ESPAL | ||
|
||
- uses: ammaraskar/gcc-problem-matcher@master | ||
|
||
- name: Build the simulator | ||
run: | | ||
cd OpenEVSE_WiFi/divert_sim | ||
make -j |
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 |
---|---|---|
|
@@ -90,3 +90,5 @@ lib/StreamSpy | |
lib/MicroTasks | ||
|
||
*.bin | ||
divert_sim/epoxyfsdata | ||
divert_sim/epoxyeepromdata |
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,2 @@ | ||
#include <EpoxyEepromEsp.h> | ||
#define EEPROM EpoxyEepromEspInstance |
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 |
---|---|---|
|
@@ -36,4 +36,7 @@ | |
extern void setup(void); | ||
extern void loop(void); | ||
|
||
#define interrupts() | ||
#define noInterrupts() | ||
|
||
#endif |
Oops, something went wrong.