ProffieOS v6.3 BETA testing

Yep I sure do

1 Like

idle.pbm (50.0 KB)
or maybe
font.pbm (50.0 KB)

1 Like

What issue?
Is this the hum staying on?
Or the hum not starting?
Or something else that I’ve forgotten?

I don’t have either of these fonts, which makes it harder to reproduce the problem.
Does it matter which font you switch TO? Or just which font you switch FROM?
Can you reproduce it with the font you already sent? (Bal Venos)

Also, since you’re using WebUSB it’s hard to know when you did what. Combined with not knowing exactly what the problem is, it’s really difficult to know what to look for in the serial output.

1 Like

Can I also see your config file?

when I use the config file from 5.9 in 6.0, the compile give me an error with the…

#ifdef CONFIG_BOTTOM
SSD1306Template<64, uint32_t> display;
#endif

…section you had me insert into my config file a hundred years ago (it seems). Deleting this portion of the config file results in a successful compile, but corruption of the OLED graphics.

The reversal of the trigger and mode buttons is on me. I forgot that I had accidentally wired those buttons in reverse, easily remedied within the config.

blaster_v3-3_config.h (2.2 KB)

This can happen (if everything else seems to be correct) if the image is not 1bit-per-pixel, monochrome, black and white only image.
Try these known-good files to test:
https://www.dropbox.com/s/q7avh3a38otgqqo/OLEDTest.zip?dl=1

When you go with a standard display setup, images which are 64 pixels wide won’t work.
Also, the configuration in CONFIG_BOTTOM has changed a bit since last time.
You need a display controller now. At minimum, it should look like this:

#ifdef CONFIG_BOTTOM
StandardDisplayController<64, uint32_t> display_controller;
SSD1306Template<64, uint32_t> display(&display_controller);
#endif

For bullet counts, you’ll want something like:

#ifdef CONFIG_BOTTOM
DisplayHelper<64, uint32_t,
  BaseLayerOp<StandardDisplayController>,
  ClearRectangleOp<10, 80, 8, 24>,
  WriteBulletCountOp<10, 20, 5>
> display_controller;
SSD1306Template<64, uint32_t> display(&display_controller);
#endif

They had been working fine under 5.9. I had figured out all that 1 bit, black and white stuff and had been making my own animations. Was unaware of the controller stuff that had been added, so l’ll try that next and report back.

so this superceeds previous version then? which I have as:

//Support for 128x64 OLED
#ifdef CONFIG_BOTTOM
SSD1306Template<128, uint64_t> display(0x3C);
#endif

or is the latter all that’s needed for standard 128x32 screens?

Inserted the bullet count lines into the config, compiled and uploaded to the board successfully, and then it turned the blaster on automatically (as it does) but it only got a half second or so into the boot sound when it abruptly stopped. OLED remains corrupted and a random barrel light turns on. No function from either the trigger or the mode buttons.
Also, the computer now thinks that the USB device is unrecognizable, so I can’t do a serial monitor to see what’s happening. “The last USB device malfunctioned and windows does not recognize it”

The issue that the hum is staying on. As seen in the read out the pstoff is above the hum sound.

Are you talking about what’s happening at 20:48:46.007?
Because it looks like there is a stab ignition happening there.
Is that the problem?

Could be that the rectangle clear is too big. Try this:

#ifdef CONFIG_BOTTOM
DisplayHelper<64, uint32_t,
  BaseLayerOp<StandardDisplayController>,
  ClearRectangleOp<10, 50, 8, 24>,
  WriteBulletCountOp<10, 20, 5>
> display_controller;
SSD1306Template<64, uint32_t> display(&display_controller);
#endif

How do I fix the USB device malfunction problem? Is this a “push the two buttons” situation?

Most likely, yes.

I can’t test any more as my usb connector broke. Thanks for your efforts thus far.

1 Like

I have been gesture spamming with proffieboard 1.5 and 3.7. No issues so far. Tip drag works with aux hold pointing down. Ill try color zoom today.

Thanks, the gesture “spam” delays have been removed on the github version.
There is an issue with ColorZoom in Edit Mode for 1 button, it won’t allow you to revert with a long press currently so I’ll need to fix but it won’t be until next week due to the holiday.

1 Like

yeah Im running your fork.