Results 269 comments of crasbe

The code can be simplified even further: ```python from sympy.abc import x from sympy import sign, Derivative Derivative(sign(x)).subs(x, 3).evalf() ``` This reduces the error trace a little bit to the...

I'm not fabian18, but a quick comparison of both datasheets did not yield significant potential issues. The only major difference is that the M24C01 does not support Fast Mode+ with...

Okay, I actually did find M24C01 EEPROMs. I put them in my backpack weeks ago because I wanted to work on this issue 🤣 @maribu as you already assumed, the...

The code was tested with my NRF52840 Development Kit and an ST M24C01WP I2C EEPROM in DIP-8. Default Address, /WC line not connected. Just VCC, GND, SDA, SCL. main.c ```c...

I'll open a PR. That's the most sensible option anyways since I have the hardware to test it here on my desk :) The PR will have another commit for...

@maribu I think the drivers/at24cxxx/Makefile.include would be a better place to define the pseudomodule for the M24C01 (or rather M24C%), considering the at24c% pseudomodules are not defined there either. Then...

This is my updated example/test code (now running on a nRF52832DK instead of the nRF52840DK, because I needed the latter for something else in the meantime.) The makefile and code...

@maribu You can close this issue now :)

That's a good hint to the nrf52840dk, as it has a Flash memory onboard, which the nRF52DK with the nRF52832 microcontroller does not. In fact we have ordered some nRF52840...

@maribu I created a pull request with an updated README. Furthermore I found when testing the filesystem example on the real board, that the stack size is insufficient and therefore...