SO3 XL firmware source?

Is there any way I could get just the firmware source code with all the defaults in it? I would like to load it to a separate arduino controller with a tiny tweak to it for testing a smarter laser idea of mine. Is it available somewhere? I know GRBL is available but I want all the default settings in there for SO3 where could I get that?

Thanks,

I don’t know if you still want this, but when you download the full grbl source, there is a subdirectory called ā€˜defaults’. Inside the ā€˜defaults’ directory is a file called defaults_shapeoko3.h, which contains all the original SO3 settings (no idea if they would be different for an XL; I just have the original SO3). If you want to rebuild grbl with the SO3 defaults, you need to modify the config.h file and change the line ā€œ#define DEFAULTS_GENERICā€ to ā€œ#define DEFAULTS_SHAPEOKO_3ā€.

1 Like

yes I already did that. I actually took it a few steps farther and downloaded the .hex from the chip itself with the icsp interface before playing with it. This way I know I have the actual .hex that came with my machine. (Always like the ā€œSTOCKā€ backup if you know what I mean)

I have not actually uploaded or changed my firmware yet but I have tested my changes on a separate arduino for now.
Soon I hope to try and upload it.

Roger,

How did you DL the hex from the chip?

Thanks
Scott

You need something like usbasp or similar hardware interface that connects to the iscp header. Then you can do a command line with avrdude to export the firmware to a binary file. Google iscp arduino avdrure backup I’m sure there are some examples that is what I went by. It wasn’t that hard but you have to have the interface and avrdude to do it.