Arduino/Proffie OS Errors

Error: Arduino: 1.8.16 (Windows 10), Board: "Proffieboard V2, Serial, SDCARD (SPI), 80 - Pastebin.com

Config: #ifdef CONFIG_TOP#include “proffieboard_v2_config.h”#define NUM_BLADES 2#d - Pastebin.com

I haven’t used Arduino in a month or 2 and I come back wanting to add a few styles, but when I tried verifying my updated config file in Proffie OS6. After verifying I find some errors from my config and other errors from within Arduino. I didn’t add or delete anything in Arduino, I even reinstalled Proffie OS and still got the same errors. Thank you for reading!

Actually, I was able to fix it. The fix was changing: “#define NUM_BLADES” to 2. It was either that or where it says: “CONFIGARRAY(Preset)” change “Preset” to “presets”

Both actually.
2 blades defined in the BladeConfig, 2 styles per preset, NUM_BLADES 2. All need the same amount, so that was correct to fix.

CONFIGARRAY() gets whatever you named the array, so it needs to match exactly.
So if you have
Preset presets[] = {
then it’s CONFIGARRAY(presets)

If you have
Preset hotdog[] = {
then it’s CONFIGARRAY(hotdog)

Ah I see! Good to know. Thanks for the heads up!