forked from wellenvogel/esp32-nmea2000
-
Notifications
You must be signed in to change notification settings - Fork 13
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 #119 from TobiasE-github/master
Update to gen_set.pl & cleanup in txt files
- Loading branch information
Showing
4 changed files
with
27 additions
and
27 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 |
---|---|---|
@@ -1,17 +1,6 @@ | ||
git remote add upstream /url/to/original/repo | ||
git fetch upstream | ||
git checkout master | ||
git reset --hard upstream/master | ||
git push origin master --force | ||
|
||
https://github.com/norbert-walter/esp32-nmea2000-obp60 | ||
|
||
|
||
cd /workspace/esp32-nmea2000-obp60 | ||
bash /workspace/esp32-nmea2000-obp60/lib/obp60task/run | ||
|
||
Craete new page for OBP60 | ||
1. Create page under /lib/obp60task/PageXXXX.cpp | ||
2. Set page name in PageXXXX.cpp on file name | ||
3. Register new page in /lib/obp60task/obp60task.cpp line 242 (registerAllPages) | ||
4. Add new page in /lib/obp60task/config.json for each page type | ||
4. Add new page in /lib/obp60task/config.json for each page type or add new page to gen_set.pl and run it to auto-generate the relevant section of config.json | ||
|
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,12 @@ | ||
git status | ||
git fetch upstream | ||
git diff --name-status upstream/master | ||
git checkout upstream/master platformio.ini | ||
git checkout upstream/master platformio.ini | ||
|
||
# how to reset my Repo to match norbert'status | ||
|
||
git remote add upstream https://github.com/norbert-walter/esp32-nmea2000-obp60 | ||
git fetch upstream | ||
git checkout master | ||
git reset --hard upstream/master | ||
git push origin master --force |
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 @@ | ||
cd /workspace/esp32-nmea2000-obp60 | ||
bash /workspace/esp32-nmea2000-obp60/lib/obp60task/run |