mirror of https://github.com/ARMmbed/mbed-os.git
Fixed KL25Z/KL46Z RTC-IN pin function
It used to set it to alternate function 2, which is I2C, and still works fine in all my tests. Not intended though, and might be giving others issues. 1 is the RTC_CLKINpull/194/head
parent
19ae097c62
commit
ace842b1f1
|
@ -19,7 +19,7 @@
|
|||
|
||||
/************RTC***************/
|
||||
const PinMap PinMap_RTC[] = {
|
||||
{PTC1, RTC_CLKIN, 2},
|
||||
{PTC1, RTC_CLKIN, 1},
|
||||
};
|
||||
|
||||
/************ADC***************/
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
/************RTC***************/
|
||||
const PinMap PinMap_RTC[] = {
|
||||
{PTC1, RTC_CLKIN, 2},
|
||||
{PTC1, RTC_CLKIN, 1},
|
||||
};
|
||||
|
||||
/************ADC***************/
|
||||
|
|
Loading…
Reference in New Issue