Björn Quentin

Results 490 comments of Björn Quentin

I tested on hardware and with ADC example changed to this: ```rust //! Connect a potentiometer to an IO pin and see the read values change when //! rotating the...

We probably should document that calling `core::mem:drop` on `Trng` on ESP32-C6 will result in ADC1 being still unusable for now

I agree with @MabezDev (and also sorry I was scared away by the wall of text initially) > One thing to think about is if we can still have the...

Seems I found something. This reduced `gpio.rs` test seems to work for me most of the time: ```rust //! GPIO Test //! //! Folowing pins are used: //! GPIO2 //!...

Ok I spend some time creating a "software-interrupts" test to see if it also runs into problems on S3 .... it does! Next, I created a very simple example to...

Adding code to blink an LED in the ISR shows it works when probe-rs is not attached - when it attaches the interrupts immediately stop working

With the workaround mentioned in the linked issue (i.e. setting INTLEVEL to 0 instead of 1) I can make successfully run the test ``` ❯ cargo xtask run-tests esp32s3 -t...

One thing I discovered while looking into another (unrelated) future HIL test PR: apparently JTAG reset (which is done by the HIL tests) doesn't reset peripherals on all chips (it...