AtomVM v0.6.4 has been released. It includes better support for #Elixir.
exatomvm Elixir library has been updated too, and now support all recent additions.

#atomvm #erlang #esp32 #rpi2040

After writing a whole bunch of PIO assembly and getting it to work with interrupt handlers I am stumped by the simplest of things: printing to serial.

Using https://github.com/earlephilhower/arduino-pico on a r-pi pico, the following minimum working example emits no output when I pull GP2 low, even though the LED lights up, indicating the `if()` branch is entered.

```
#include <Arduino.h>

void setup() {
pinMode(2, INPUT_PULLUP);
pinMode(25, OUTPUT);

Serial.begin(115200);
}

void loop() {
digitalWrite(25, LOW);
if (digitalRead(2) == LOW) {
Serial.println("XXXXXXXXXXXXXXXXXXXXX");
digitalWrite(25, HIGH);
}
delay(50);
}
```

If I remove the `if()` it works, so somehow being _inside_ the `if()` is the issue.

I thought it might be a buffering issue on the desktop side, so wrote a quick minimal serial reader with no buffering and got the same results.

Any thoughts?

#rpi2040 #arduino

GitHub - earlephilhower/arduino-pico: Raspberry Pi Pico Arduino core, for all RP2040 and RP2350 boards

Raspberry Pi Pico Arduino core, for all RP2040 and RP2350 boards - earlephilhower/arduino-pico

GitHub
@randy my friend and I were trying hundreds of combinations on #micropython today. My friends's last name is #GPT, first name #chat. He and her distant retard cousin #perplexity AI actually got a script semi rolling. It looked like the stuff I was looking for.... except 1000 times slower with each bit takin 40ms when it has to be 40us. I try to push both of them to bring it down and we got to like 60us but it wouldn't budge. The #rpi2040 kept crashing. Real exciting stuff actually.
God fuck!
I can't get a fucking break! No matter what #chip I try some fuck ass #incompatibility shows up! Today its the #rpi2040. At least I only bought 2 pieces this time. fuck this chip too. fuck everything that doesn't work on the first try. and fuck all the vendors going "oh yeah its so easy you just drop the code here and it works" fuck that, its fake.
6 months review of the open-source Ploopy Headphones

YouTube
I expected more of a struggle but getting my first Raspberry Pico W to connect to my Home Assistant took the better part of ten minutes.That means many more I/O-pins, sensors and data to feed HA.. #HA #HomeAssistant #RPI2040