summaryrefslogtreecommitdiff
path: root/tests/extmod/machine_timer.py.exp
AgeCommit message (Collapse)Author
3 daystests: Generalise rp2 timer test into a cross-port test.Chris Webb
Now all ports with machine.Timer except nrf support both hard and soft callbacks, generalise tests/ports/rp2_machine_timer.py into tests/extmod/machine_timer.py. There is an existing machine_soft_timer.py which varies period= and covers the nrf port but skips esp32/esp8266 because they don't support software timers. In our new test, we try varying freq= instead of period=, and cover esp32/esp8266 (with a fixed choice of hardware timer) but skip nrf because it doesn't support hard= or freq=. Add a check that the heap is locked (so allocation fails) in hard callbacks and it is unlocked (so allocation succeeds) in soft callbacks, to ensure we're getting the right kind of callback, not falling back to the default. Signed-off-by: Chris Webb <chris@arachsys.com>
2024-08-07tests/extmod: Rename machine_timer exp file to machine_soft_timer.Damien George
This was missed in 9ba04cc7563ec934ca14d66aa18ae3563c8d1aea Signed-off-by: Damien George <damien@micropython.org>
2020-01-22tests/extmod: Add basic machine.Timer test.Damien George