I was not able to find one in the search
Thank you
Search found 4 matches
- Mon Jul 03, 2023 7:53 pm
- Forum: Feature Requests
- Topic: Flowcode 10 RC5 Component
- Replies: 1
- Views: 1995
- Thu Jun 16, 2022 11:23 am
- Forum: General
- Topic: PIC 12F629 gpio internal pull-up/down settings
- Replies: 4
- Views: 2958
- Thu Jun 16, 2022 10:21 am
- Forum: General
- Topic: PIC 12F629 gpio internal pull-up/down settings
- Replies: 4
- Views: 2958
Re: PIC 12F629 gpio internal pull-up/down settings
Hello, The PIC12F629 only has internal pull up resistors but these can be enabled as follows using a C icon. OPTION_REG = OPTION_REG & 0x7F; //Clear GPPU bit enabling pull ups WPU = 0x11; //Enable Pullup on GPIO0 & GPIO4 Is it correct? The internal pull up resistors of IOPort 4 is still dis...
- Thu Jun 16, 2022 9:34 am
- Forum: General
- Topic: PIC 12F629 gpio internal pull-up/down settings
- Replies: 4
- Views: 2958
PIC 12F629 gpio internal pull-up/down settings
Hi, I have a difficulty to set the code of gpio internal pull-up/down settings. Anyone can teach me how to set the code? Thank a lot!