Search found 28 matches

by S_VE
Wed Jul 02, 2025 2:20 pm
Forum: General
Topic: Help with XC compiler problem
Replies: 13
Views: 12163

Re: Help with XC compiler problem

Thank you Martin.

-S_V
by S_VE
Wed Jul 02, 2025 9:13 am
Forum: General
Topic: Help with XC compiler problem
Replies: 13
Views: 12163

Re: Help with XC compiler problem

for example, you can use PIE1bits.RCIE=1; You can clear bits with cr_bit instead of st_bit. So to enable weak pull-ups on PIC16F1825 for example, you can use cr_bit(OPTION_REG,nWPUEN); or OPTION_REGbits.nWPUEN = 1; Hi Martin, thank you for the useful info Where can we get the details about these co...
by S_VE
Tue Dec 24, 2024 7:07 pm
Forum: General
Topic: Merry Christmas!
Replies: 5
Views: 2284

Re: Merry Christmas!

Hi
Merry Christmas to everyone :D
by S_VE
Sun Dec 15, 2024 12:58 pm
Forum: General
Topic: Modbus master non blocking code
Replies: 1
Views: 3250

Modbus master non blocking code

Hello everyone,

i am looking for Modbus RTU Master non blocking code. can you please guide me.

thanks
S_Ve
by S_VE
Fri Oct 04, 2024 6:46 pm
Forum: Feature Requests
Topic: Group Icons - Expand and Collapse
Replies: 4
Views: 8944

Re: Group Icons - Expand and Collapse

Steve-Matrix wrote:
Mon Sep 16, 2024 5:31 pm
as we are actively developing v11 now.
Hi Steve
any tentative FC V11 release date
by S_VE
Sun Sep 29, 2024 5:18 pm
Forum: Feature Requests
Topic: Switch with more decisions
Replies: 11
Views: 12637

Re: Switch with more decisions

Thank You Martin
by S_VE
Mon Sep 16, 2024 5:23 pm
Forum: Feature Requests
Topic: Group Icons - Expand and Collapse
Replies: 4
Views: 8944

Re: Group Icons - Expand and Collapse

The Group Icons tool is useful when tidying up my flowcode. could the +/- expand / collapse feature be added to the group tool. I often want to peak into the group but not want to de-select/re-select the items each time. Thanks, John. very useful feature request!! This may please be extended to Flo...
by S_VE
Mon Sep 16, 2024 5:19 pm
Forum: Feature Requests
Topic: Switch with more decisions
Replies: 11
Views: 12637

Re: Switch with more decisions

Hi Martin this looks quite interesting, If things are more involved (for example some action) then create a macro for each action and use a lookup table of function pointers In a C block; FCV_LOOKUP[0] = FCM_Action0; .. FCV_LOOKUP[11] = FCM_Action11; Then use a line of C to run the action depending ...
by S_VE
Sun Sep 01, 2024 9:59 am
Forum: General
Topic: how to know the "execution time" and "execution cycles" in simulation
Replies: 2
Views: 2609

how to know the "execution time" and "execution cycles" in simulation

Hello everyone

While Debugging in Simulation mode, how can we know the time taken per each STEP ( or from Breakpoint to Breakpoint )
(1) Execution time ( in mS / uS / nS )
(2) Execution Cycles ( in uC cycles )

thanks