-
Hello everybody, I have a board with signals going to PC14 & 15 on this mcu and I'd like to make PC14 an input and PC15 an output. It seems that the RTC must be configured to make the gpio available to the arduino calls, but I am not finding the correct way. Thank you. |
Beta Was this translation helpful? Give feedback.
Answered by
fpistm
Jan 10, 2024
Replies: 1 comment
-
Hi @barbiani to setup the pin in input or output, simply use pinMode api: No need of RTC. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
fpistm
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @barbiani
to setup the pin in input or output, simply use pinMode api:
https://www.arduino.cc/reference/en/language/functions/digital-io/pinmode/
No need of RTC.