djphazer / O_C-Phazerville

The kitchen sink of O_C firmware - do all the things!
213 stars 32 forks source link

Compiling and Flashing multiple times #46

Closed TricksterSam closed 5 months ago

TricksterSam commented 5 months ago

I'm using PlatformIO in Visual Studio. When I compile the code, it looks to me like the compile process is happening 3 or 4 times. If I flash the Ornament and Crime, it also seems to repeat the flash 3 or 4 times. Any hint as to why it might be doing this?

djphazer commented 5 months ago

If you're using the Default build target, it's probably building 4 or 5 targets in a row, which is useful for continuous integration and preparing releases.

You'll want to pick a specific build target config like pewpewpew or main. Refer to the platformio.ini file

TricksterSam commented 5 months ago

Perfect. Thanks!