Uri Shaked

Results 60 issues of Uri Shaked

Create a jest transform that instruments your code with TypeWiz, so you can automatically add types when your tests run. Will be useful for mweststrate/immer#128

enhancement

see wokwi/wokwi-features#352 for details

As part of the discussion in #67, I started working on creating a simpler API for using the simulator. For instance, creating an ATmega328p simulation, will look something like: ```javascript...

question

Datasheet says: > During reset, all I/O registers are set to their initial values, and the program starts execution from the reset vector so there are a couple of changes...

enhancement
open for vote

TWI master peripheral was implemented as part of #10 Register description can be found in page 215 / section 22 of the [datasheet](http://ww1.microchip.com/downloads/en/DeviceDoc/ATmega48A-PA-88A-PA-168A-PA-328-P-DS-DS40002061A.pdf).

enhancement
open for vote

First of all, thanks for bring numpy and scipy to embedded Python. It's so cool to have all these math abilities now available in micropython! I'm working on an online...

See section 3.5.3 of the [RP2040 Datasheet](https://datasheets.raspberrypi.org/rp2040/rp2040-datasheet.pdf)

enhancement

Running on the silicone: ```python >>> machine.freq() 125000000 ``` Running in the emulator: ```python >>> machine.freq() 48000000 ```

bug

We have a working GPIO implementation, but it'd be great to have some tests as well!

Timer peripheral technical debt: - Pausing the counter by writing to the PAUSE (0x30) register - Writing the time using TIMELW (0x00) and TIMEHW (0x04) registers These registers are probably...