Hello, everyone - bitx newbie here. I just got my bitx40 this week and have it wired up for receive while I wait for the next VE exam session. In the mean time I've been looking through the Raduino code as there are several modifications I'd like to try. After getting frustrated with the Arduino IDE, I searched around and discovered PlatformIO. It's pretty nice.
I took a stab at reshuffling the Raduino code around to work in PlatformIO:? IMO, the sketch is rather large and would benefit from some refactoring/splitting up. This is not easily done with the Arduino IDE, but relatively straightforward with PlatformIO. It has much nicer way of dealing with libraries. Rather than everything coming from one global libraries folder, you can specify project-specific libraries through configuration: [env:nanoatmega328] ?platform = atmelavr
?board = nanoatmega328
?framework = arduino
?lib_deps =
? ?[email protected] Also in your source tree, you can include your own project-specific libraries (details in this ). So, is this something people would be interested in trying out? |