| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | 1.55V AA battery should not show as "white" voltage color, only purple | Selene ToyKeeper | 2023-11-21 | 1 | -1/+1 |
| | | |||||
| * | started refactoring fsm/adc.*, but need a checkpoint before continuing | Selene ToyKeeper | 2023-11-19 | 2 | -24/+14 |
| | | |||||
| * | added dac-scale.py: short script to calculate avrdd DAC+Vref values from ↵ | Selene ToyKeeper | 2023-11-19 | 1 | -0/+89 |
| | | | | | level_calc.py ramp data | ||||
| * | added *unfinished* support for avr32dd20, plus a build target for a dev kit | Selene ToyKeeper | 2023-11-19 | 8 | -0/+822 |
| | | | | | | ADC doesn't work yet. No voltage, no temperature. I need to do a lot of refactoring on the ADC code. :( | ||||
| * | thefreeman/boost*: define Vref values more explicitly without magic numbers | Selene ToyKeeper | 2023-11-19 | 4 | -18/+22 |
| | | |||||
| * | moved prevent_reboot_loop() and some other junk out of fsm/main.c | Selene ToyKeeper | 2023-11-19 | 7 | -47/+42 |
| | | |||||
| * | temporary fix for aux LEDs on avrdd; needs proper refactoring | Selene ToyKeeper | 2023-11-19 | 1 | -3/+6 |
| | | |||||
| * | missed a "include -> HWDEF_H" conversion earlier | Selene ToyKeeper | 2023-11-19 | 1 | -1/+2 |
| | | |||||
| * | ramp-mode: allow hwdef to adjust gradual tick speed | Selene ToyKeeper | 2023-11-19 | 2 | -1/+7 |
| | | | | | | | | | The gradual tick frequency was written for 8-bit PWM, but it can be too slow on hardware with more bits. The hwdef can compensate by using larger steps, but that makes adjustments more visible... So this provides an option to increase speed without visibility. | ||||
| * | version check: allow hex digits | Selene ToyKeeper | 2023-11-19 | 1 | -1/+4 |
| | | |||||
| * | refactor checkpoint: splitting MCU-specific code into arch/$MCU.[ch] | Selene ToyKeeper | 2023-11-10 | 57 | -642/+862 |
| | | | | | Phew, that's a lot of changes! And there's still a lot more to do... | ||||
| * | added md5sum to build-all.sh output per target | Selene ToyKeeper | 2023-11-10 | 1 | -2/+5 |
| | | | | | (to make it easier to detect when builds did or didn't change) | ||||
| * | added a Makefile, so either `make` or `./make` can be used for most tasks | Selene ToyKeeper | 2023-11-07 | 1 | -0/+28 |
| | | | | | | | | | | | | | | | | | | | | `make` doesn't always work, like when the user tries to do certain types of CLI args, but it's handy to have as a convenience sometimes. What works: - make - make clean - make hank boost - make me a sandwich What doesn't work: - make foo --bar - make foo BAR=1 The `make` program eats some types of arguments. | ||||
| * | oops, missed a venv name change in the readme | Selene ToyKeeper | 2023-11-07 | 1 | -1/+1 |
| | | |||||
| * | Merge branch 'pr-16-SammysHP-momentary-turbo' into trunk | Selene ToyKeeper | 2023-11-07 | 1 | -0/+1 |
| |\ | | | | | | | | | | | | | | | Super simple, easy method for allowing turbo in Momentary Mode. * pr-16-SammysHP-momentary-turbo: shortened unnecessarily long explanation Allow turbo in momentary mode | ||||
| | * | shortened unnecessarily long explanation | Selene ToyKeeper | 2023-11-07 | 1 | -5/+1 |
| | | | |||||
| | * | Merge branch 'momentary-turbo' of github.com:SammysHP/anduril into ↵ | Selene ToyKeeper | 2023-11-07 | 1 | -0/+5 |
| |/| | | | | | | | | | | | | | pr-16-SammysHP-momentary-turbo * 'momentary-turbo' of github.com:SammysHP/anduril: Allow turbo in momentary mode | ||||
| | * | Allow turbo in momentary mode | SammysHP | 2023-11-07 | 1 | -0/+5 |
| | | | |||||
| * | | fail pull requests if author accidentally committed a new version.h | Selene ToyKeeper | 2023-11-07 | 1 | -0/+4 |
| | | | |||||
| * | | recommend .venv/ instead of env/ for python deps | Selene ToyKeeper | 2023-11-07 | 2 | -4/+7 |
| | | | |||||
| * | | shell script cleanup (fix lint warnings, remove unused scripts) | Selene ToyKeeper | 2023-11-07 | 16 | -90/+64 |
| | | | |||||
| * | | Merge branch 'pull15' into trunk | Selene ToyKeeper | 2023-11-07 | 9 | -9/+9 |
| |\ \ | |/ |/| | | | | | | | | | | | | | Using '#!/usr/bin/env foo' is a good idea in general, and it might fix builds on MacOS and other non-debian platforms. * pull15: Changed bash and sh shebangs to /usr/bin/env Update make shebang for portability | ||||
| | * | Merge branch 'trunk' of github.com:GarikFirst/anduril into pull15 | Selene ToyKeeper | 2023-11-07 | 9 | -9/+9 |
| |/| | | | | | | | | | | | | | | | | | Fixes bug 13 maybe? https://github.com/ToyKeeper/anduril/issues/13 * 'trunk' of github.com:GarikFirst/anduril: Changed bash and sh shebangs to /usr/bin/env Update make shebang for portability | ||||
| | * | Changed bash and sh shebangs to /usr/bin/env | Igor Bulekov | 2023-11-07 | 8 | -8/+8 |
| | | | |||||
| | * | Update make shebang for portability | Garik First | 2023-11-07 | 1 | -1/+1 |
| | | | |||||
| * | | made build fail if eeprom data bigger than MCU's eeprom size | Selene ToyKeeper | 2023-11-07 | 3 | -38/+49 |
| |/ | | | | | Based on techniques suggested by DurvalMenezes here: https://github.com/ToyKeeper/anduril/pull/4 | ||||
| * | memes | Selene ToyKeeper | 2023-11-06 | 1 | -0/+2 |
| | | |||||
| * | build-all.sh: don't err when search term starts with a dash | Selene ToyKeeper | 2023-11-06 | 1 | -1/+1 |
| | | |||||
| * | fixed invalid characters in github artifact names | Selene ToyKeeper | 2023-11-05 | 1 | -1/+1 |
| | | | | | | | | | | | This failed just a couple runs after adding CI, giving an error when someone had a slash in their pull request title: Error: Artifact name is not valid: build all-6/merge-4d210ad-8. Contains the following character: Forward slash / But the filename seems plenty unique even without the ${GITHUB_REF_NAME}, so I removed it. | ||||
| * | Merge branch 'johnou-bugfix/no-simple-ui-error' into trunk | Selene ToyKeeper | 2023-11-05 | 1 | -9/+10 |
| |\ | | | | | | | | | | | * johnou-bugfix/no-simple-ui-error: more consistent syntax, to avoid failed builds when various options are used Fix compile error when Simple UI is undefined. | ||||
| | * | more consistent syntax, to avoid failed builds when various options are used | Selene ToyKeeper | 2023-11-05 | 1 | -14/+12 |
| | | | |||||
| | * | Merge branch 'bugfix/no-simple-ui-error' of github.com:johnou/anduril into ↵ | Selene ToyKeeper | 2023-11-05 | 1 | -2/+5 |
| |/| | | | | | | | | | | | | | johnou-bugfix/no-simple-ui-error * 'bugfix/no-simple-ui-error' of github.com:johnou/anduril: Fix compile error when Simple UI is undefined. | ||||
| | * | Fix compile error when Simple UI is undefined. | Johno Crawford | 2023-11-06 | 1 | -2/+5 |
| | | | |||||
| * | | Merge branch 'DurvalMenezes-undef_USE_MANUAL_MEMORY_fix' into trunk | Selene ToyKeeper | 2023-11-05 | 3 | -5/+11 |
| |\ \ | |/ |/| | | | | | | | * DurvalMenezes-undef_USE_MANUAL_MEMORY_fix: fixed build errors when #undef USE_MANUAL_MEMORY (previous commit still failed) Fixes syntax errors when USE_MANUAL_MEMORY is undefined. | ||||
| | * | fixed build errors when #undef USE_MANUAL_MEMORY | Selene ToyKeeper | 2023-11-05 | 3 | -7/+7 |
| | | | | | | | | | (previous commit still failed) | ||||
| | * | Merge branch 'trunk' into DurvalMenezes-undef_USE_MANUAL_MEMORY_fix | Selene ToyKeeper | 2023-11-05 | 5 | -18/+102 |
| | |\ | |/ |/| | | | | | | | | | | | | | | | | | | | | | * trunk: removed test branch from action triggers (the action works and seems ready to merge) test: is apt-get any faster than apt? github actions: cache the Atmel DFP files between runs fixed intentional error, because CI build-fail test worked correctly help CI detect build failures initial test to fix branch names and see if actions work make clean: don't remove files in arch/dfp/ docs: added info on contributing, fixed minor formatting issues basic compile workflow publishing artifacts to test | ||||
| * | | Merge branch 'gretel-actions' into trunk | Selene ToyKeeper | 2023-11-05 | 3 | -2/+52 |
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | adds basic CI to ensure all build targets compile * gretel-actions: removed test branch from action triggers (the action works and seems ready to merge) test: is apt-get any faster than apt? github actions: cache the Atmel DFP files between runs fixed intentional error, because CI build-fail test worked correctly help CI detect build failures initial test to fix branch names and see if actions work basic compile workflow publishing artifacts to test | ||||
| | * | | removed test branch from action triggers | Selene ToyKeeper | 2023-11-05 | 1 | -1/+1 |
| | | | | | | | | | | | | | (the action works and seems ready to merge) | ||||
| | * | | test: is apt-get any faster than apt? | Selene ToyKeeper | 2023-11-05 | 1 | -3/+3 |
| | | | | |||||
| | * | | github actions: cache the Atmel DFP files between runs | Selene ToyKeeper | 2023-11-05 | 1 | -2/+13 |
| | | | | |||||
| | * | | fixed intentional error, because CI build-fail test worked correctly | Selene ToyKeeper | 2023-11-05 | 1 | -1/+1 |
| | | | | |||||
| | * | | help CI detect build failures | Selene ToyKeeper | 2023-11-05 | 3 | -3/+4 |
| | | | | | | | | | | | | | | | | | | | made 'make' and 'build-all.sh' exit with an error on fail, so CI can hopefully detect it... and added an intentional source bug to make it fail for testing purposes | ||||
| | * | | initial test to fix branch names and see if actions work | Selene ToyKeeper | 2023-11-05 | 1 | -6/+11 |
| | | | | |||||
| | * | | Merge branch 'actions' of github.com:gretel/anduril-tk into gretel-actions | Selene ToyKeeper | 2023-11-05 | 1 | -0/+33 |
| |/| | | | | | | | | | | | | | | | | | | | | | | | https://github.com/ToyKeeper/anduril/pull/1 "simple github actions workflow for continous integration" * 'actions' of github.com:gretel/anduril-tk: basic compile workflow publishing artifacts to test | ||||
| | * | | basic compile workflow publishing artifacts to test | Tom Hensel | 2023-11-05 | 1 | -0/+33 |
| | | | | |||||
| * | | | make clean: don't remove files in arch/dfp/ | Selene ToyKeeper | 2023-11-05 | 1 | -2/+2 |
| | | | | |||||
| * | | | docs: added info on contributing, fixed minor formatting issues | Selene ToyKeeper | 2023-11-05 | 2 | -14/+48 |
| | | | | |||||
| | | * | Fixes syntax errors when USE_MANUAL_MEMORY is undefined. | Durval Menezes | 2023-11-05 | 1 | -1/+7 |
| | |/ |/| | |||||
| * | | detect-mcu.sh: don't hang when MCU isn't found; exit with an error instead | Selene ToyKeeper | 2023-11-04 | 1 | -0/+4 |
| | | | |||||
| * | | added missing noctigon-k9.3 files hidden by an overzealous .gitignore rule | Selene ToyKeeper | 2023-11-04 | 5 | -2/+4 |
| |/ | |||||
