Flashlight Firmware Repository

Thanks for your help! If it makes any difference, either stepping down to the previous mode or stepping down to a pre-set value will work for turbo. Idk if that would be easier to get working.

With some hints I can look at the code and kinda figure out what’s going on, but I don’t know the language well enough to write the code myself.

So I have tried to browse the code and I think I missed it, but is there an adaption of the BLF A6 firmware for single PWM driver, like the BLF17DD/A17DD-SO8 etc?

Apologies If I missed it, I know much of the code works with those driver, but I really like the A6 software and would love to use it on my other lights.

OK, back at the computer and reworked the code a little.

You can try this:

I moved the ON+OFF control for the FET pin to the set_output function in line 377.
This is a little cleaner than patching it into the main.

It compiles (does not fit on a Tiny13 with my compiler), but I do not have a convenient way to test it. Just let me know if it is not exactly what you need.

It should work as is, just adapt the levels for the 1st PWM output to what you need.
By default they are 0 for the lower levels.

Look for these defines around lines 119 and 129 respectively:

First one contains the levels for the 7-mode group, the other for the 4-mode group. Change the zeroes to useful levels.

As far as I can tell at this point, everything is working perfectly. I’ll of course report if I notice anything weird with more use. For me it compiled at 93% of capacity for the 13a. Thanks so much! My S8 can finally get a new heart :wink:

TK: I feel this would be a good one to add to the repository. It is so far the only one that works with my TripleDown driver boards.

Ahhhh I see how you’ve done it. Very clever.

:slight_smile:

HELP!!!

I’m having issues flashing. Over christmas I upgraded my PC to Win10 and since can no longer flash firmware. I have tried different USBasp driver but I’m getting this message:

avrdude: verifying …
avrdude: 250 bytes of flash verified
avrdude: reading input file “0╬75”
avrdude: invalid byte value (0╬75) specified for immediate mode
avrdude: read from file ‘0╬75’ failed

Can anybody help?

Run it from a virtual machine

Tried flashing with AVRDudess (GUI for AVRDude) and I’ve not got the error message. Will find out how well this has worked on thursday

I have a problem with one of the eight fet + 1 drivers that i built. All of them are running the blf a6 firmware but one driver i can’t get to the soft config mode (blink where i have to select the 2nd group and memory mode). It just continuously goes to the next mode after 15 or more taps. I don’t know if it’s a bug in the firmwware but all of my drivers are using the same firmware and this is the only one that is having that problem so maybe not firmware. May it’s the mcu? or the otc?

I´m searching for a FW similar to TKs STAR_momentary (which I use atm), but with the possibility to switch off faster. I believe I will like dth_Momentary_v1_1 but I need also dual PWM output.

Any ideas?

BTW I´m not familiar in programming, just able to change mode values and flashing to driver.

Thanks for your help!

And yes, I didn´t read the whole thread… :wink:

It’s not difficult to change STAR (not TK’s btw) so that a long(er/ish) press goes to off instead of going backwards. That’s what I use. Short press always goes forward, long press from off goes to turbo, long press from on turns off.

My mistake, sorry JonnyC…

Yes, the way you describe would fit my needs. But it’s not easy for me to change it, probably impossible.

May I see your changes or get the source code?

I can upload the code I used when I get home tonight, but someone else might be able to do it sooner. It really is a simple change, just part of one line if I remember correctly.

Thanks pd, that would be great.

I know I have to learn a lot about the codes work but it takes time… even to see which change will lead to an effect is one step forward

If you’re in a hurry, you could probably find the answer in the STAR thread a few pages back. I had to ask for help doing it about a year ago(?).

I´m not in a hurry but in the meawhile I found it, changed it and it works :smiley:

Now it fits my needs and I have one more nice light with a great UI. Thank you!!!

Cool. That’s what I use in all of my e-switch lights (so far). I also shorten up the long press so that it’s only about 0.3 seconds.

It’s just a small step toward giving it a more normal code layout. Putting everything in one file is pretty unusual, and frowned on in most software development. Instead of using a single code file to represent the state of a project (like saving the build for a specific light), snapshots are more often taken in the form of a code branch or repository tag or a tarball or some other complete snapshot of the entire project.

So… Common functions, things which don’t usually change from project to project, were moved into shared headers. When one project gets an improvement to these bits, all the others benefit too. The individual projects have less boilerplate code and focus more on the parts which make them unique. And if there’s a common component you like to do differently (such as hardware calibration), you can swap out one file and it’ll apply to every project automatically.

I limited this to only my directory though, since other people manage their code in different ways. And I added ‘tk-’ to the beginning of each file to avoid name collisions. C doesn’t have real namespaces, so I basically kludged one together in flat space instead.

I’ve still tried to avoid a lot of typical C idioms though, like depending on a specific build system or external libraries or anything else which makes it significantly harder to use in WinAVR or OSX. These projects are still simple enough to be manageable without a massive complex internal structure.