Context
In PR #105, there's a hardcoded delay value of 50_000 microseconds (50ms) in the chip_reset method:
self.chip.delay_us(50_000); // 50 msec delay
Task
Extract this and other hardcoded delay values into named constants to make them more prominent. This is part of an eventual goal to remove delays if possible.
References
Acceptance Criteria
Context
In PR #105, there's a hardcoded delay value of
50_000microseconds (50ms) in thechip_resetmethod:Task
Extract this and other hardcoded delay values into named constants to make them more prominent. This is part of an eventual goal to remove delays if possible.
References
Acceptance Criteria