From 9a1964ce418e7447768a370e682303fd9a61eaa4 Mon Sep 17 00:00:00 2001 From: Francesco Gazzetta Date: Sat, 20 Nov 2021 17:39:46 +0100 Subject: [PATCH] Add hrs3300 write_reg and read_reg to simulator Signed-off-by: Francesco Gazzetta --- wasp/boards/simulator/watch.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/wasp/boards/simulator/watch.py b/wasp/boards/simulator/watch.py index e5cf2b2..f6e3d9f 100644 --- a/wasp/boards/simulator/watch.py +++ b/wasp/boards/simulator/watch.py @@ -155,6 +155,12 @@ class HRS(): self._i = 0 self._step = 1 + def read_reg(self, addr): + pass + + def write_reg(self, addr, val): + pass + def enable(self): pass