Search found 4 matches

by mansiukit
Mon Jul 03, 2023 7:53 pm
Forum: Feature Requests
Topic: Flowcode 10 RC5 Component
Replies: 1
Views: 950

Flowcode 10 RC5 Component

I was not able to find one in the search

Thank you
by mansiukit
Thu Jun 16, 2022 11:23 am
Forum: General
Topic: PIC 12F629 gpio internal pull-up/down settings
Replies: 4
Views: 1398

Re: PIC 12F629 gpio internal pull-up/down settings

BenR wrote:
Thu Jun 16, 2022 10:46 am
Hello,

You have the C code in between the /* and */ symbols, these are comment blocks and need removing otherwise the code is effectively commented out.
Thank you so much
by mansiukit
Thu Jun 16, 2022 10:21 am
Forum: General
Topic: PIC 12F629 gpio internal pull-up/down settings
Replies: 4
Views: 1398

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 disable. Th...
by mansiukit
Thu Jun 16, 2022 9:34 am
Forum: General
Topic: PIC 12F629 gpio internal pull-up/down settings
Replies: 4
Views: 1398

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!