File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
atmel-samd/common-hal/analogio Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 45
45
#endif
46
46
47
47
#define HAVE_ANALOGOUT ( \
48
- (defined(PIN_PA02) && !defined(IGNORE_PA02 )) || \
49
- (defined(SAM_D5X_E5X) && defined(PIN_PA05) && !defined(IGNORE_PA05 )) \
48
+ (defined(PIN_PA02) && !defined(IGNORE_PIN_PA02 )) || \
49
+ (defined(SAM_D5X_E5X) && defined(PIN_PA05) && !defined(IGNORE_PIN_PA05 )) \
50
50
)
51
51
52
52
void common_hal_analogio_analogout_construct (analogio_analogout_obj_t * self ,
Original file line number Diff line number Diff line change 1
1
CIRCUITPY_CREATOR_ID = 0x000C303B
2
- CIRCUITPY_CREATION_ID = 0x00320001
2
+ CIRCUITPY_CREATION_ID = 0x00C30001
3
3
4
4
IDF_TARGET = esp32c3
5
5
Original file line number Diff line number Diff line change 1
- CIRCUITPY_CREATOR_ID = 0x70010001
2
- CIRCUITPY_CREATION_ID = 0x00100001
1
+ CIRCUITPY_CREATOR_ID = 0x000C303B
2
+ CIRCUITPY_CREATION_ID = 0x00C30002
3
3
4
4
IDF_TARGET = esp32c3
5
5
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ void common_hal_watchdog_feed(watchdog_watchdogtimer_obj_t *self) {
96
96
void common_hal_watchdog_deinit (watchdog_watchdogtimer_obj_t * self ) {
97
97
if (self -> mode == WATCHDOGMODE_RESET ) {
98
98
if (gc_alloc_possible ()) {
99
- mp_raise_NotImplementedError (translate ("WatchDogTimer cannot be deinitialized once mode is set to RESET" ));
99
+ mp_raise_RuntimeError (translate ("WatchDogTimer cannot be deinitialized once mode is set to RESET" ));
100
100
}
101
101
// Don't change anything because RESET cannot be undone.
102
102
return ;
You can’t perform that action at this time.
0 commit comments