| Commit message (Collapse) | Author | Age | Files | Lines |
| | |
|
| |
|
|
|
|
|
|
| |
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.
|
| | |
|
| |
|
|
| |
Phew, that's a lot of changes! And there's still a lot more to do...
|
| |
|
|
| |
(to make it easier to detect when builds did or didn't change)
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
`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.
|
| | |
|
| |\
| |
| |
| |
| |
| |
| |
| | |
Super simple, easy method for allowing turbo in Momentary Mode.
* pr-16-SammysHP-momentary-turbo:
shortened unnecessarily long explanation
Allow turbo in momentary mode
|
| | | |
|
| |/|
| |
| |
| |
| |
| |
| | |
pr-16-SammysHP-momentary-turbo
* 'momentary-turbo' of github.com:SammysHP/anduril:
Allow turbo in momentary mode
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| |\ \
| |/
|/|
| |
| |
| |
| |
| |
| | |
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
|
| |/|
| |
| |
| |
| |
| |
| |
| |
| | |
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
|
| | | |
|
| | | |
|
| |/
|
|
|
| |
Based on techniques suggested by DurvalMenezes here:
https://github.com/ToyKeeper/anduril/pull/4
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
| |
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.
|
| |\
| |
| |
| |
| |
| | |
* 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.
|
| | | |
|
| |/|
| |
| |
| |
| |
| |
| | |
johnou-bugfix/no-simple-ui-error
* 'bugfix/no-simple-ui-error' of github.com:johnou/anduril:
Fix compile error when Simple UI is undefined.
|
| | | |
|
| |\ \
| |/
|/|
| |
| |
| | |
* 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.
|
| | |
| |
| |
| | |
(previous commit still failed)
|
| | |\
| |/
|/|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* 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
|
| |\ \
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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
|
| | | |
| | |
| | |
| | | |
(the action works and seems ready to merge)
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | |
| | |
| | |
| | |
| | | |
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
|
| | | | |
|
| |/| |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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
|
| | | | |
|
| | | | |
|
| | | | |
|
| | |/
|/| |
|
| | | |
|
| |/ |
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
| |
- `./make dfp` downloads and installs Atmel DFPs for each supported MCU
- build.sh detects and uses attiny or avrdd, and others are simple to add
- updated setup info in /README.md
... also some other small documentation updates.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
by raising MCU clock speed to half at levels 2+
instead of the previous value of 1/4th speed
I tried full speed too, which makes ripple much smaller and faster...
but it also causes a big jump in brightness between levels 1 and 2.
My lux meter shows ~350 at 1/150 or ~500 at 2/150,
but at half speed it's ~650 at 2/150,
and at full speed it's ~1100 at 2/150.
So I went for a happy medium to balance ripple, brightness, and runtime.
|
| |
|
|
|
| |
@hank-noctigon-kr4-boost, @hank-noctigon-k1-boost, @hank-noctigon-dm11-boost
(0216, 0253, 0273)
|
| | |
|
| |
|
|
|
|
|
|
| |
- fleshed out main README.md a bit
- improved github formatting for docs/which-hex-file.md
- added 'make docs' to preview .md files as .html
- ignore html files generated by 'make docs'
- removed rampingios-v3.html file generated years ago
|