Compare commits

...

5 Commits

Author SHA1 Message Date
rusefillc 33baaacd61 lint 2024-04-21 09:38:26 -04:00
GitHub Action 2bb4b5550c merge rusEFI wiki 2024-04-21 13:34:04 +00:00
rusefillc 501b1b72ae Updated Custom Firmware (markdown) 2024-04-21 09:32:31 -04:00
GitHub Action e40ae1a48a merge rusEFI wiki 2024-04-21 13:17:25 +00:00
rusefillc 6b6cf26b5a Updated Custom Firmware (markdown) 2024-04-21 09:15:49 -04:00
1 changed files with 6 additions and 1 deletions

View File

@ -22,6 +22,12 @@ Happens daily.
Alternatively open "Actions" in your repo similar to https://github.com/rusefi/fw-custom-example/actions/workflows/update-rusefi-reference.yaml click "Run Workflow"->"Run Workflow"
To to stop it from happening daily you would have to remove two lines from ``.github/workflows/build-firmware.yaml`` - the ones with ``cron`` and ``schedule``.
## Default Board Configuration
Adjust [setBoardDefaultConfiguration@board_configuration.cpp](https://github.com/rusefi/fw-custom-example/blob/main/board_configuration.cpp) method, see other setBoardDefaultConfiguration method examples.
## Really advanced use-case you would probably not need it
If you have a more complex situation, with several different board variants you need to build, you can still achieve this with one repo.
@ -71,4 +77,3 @@ There is also a `rusefi-dir` option you can use if you want to put your rusefi s
### Q: I get "exti index already used" error?
A: stm32 has a limitation: you can only have 16 digital inputs. Also each input has to be on a pin with unique numeric part: for example, you can have digital input on pins PA1 PB2 PC3 but you cannot have PA1 and PB1 since those are both "something-1" pins.