Jump to content

Component: PIC32 Core Timer (Timing): Difference between revisions

From Flowcode Help
Created page with "{| style="width:50%" |- | width="20%" style="color:gray;" | Author | MatrixTSL |- | width="20%" style="color:gray;" | Version | 1.0 |- | width="20%" style="color:gray;..."
 
No edit summary
Line 20: Line 20:


==Detailed description==
==Detailed description==




Line 38: Line 40:


==Examples==
==Examples==




Line 57: Line 61:




==Downloadable macro reference==
==Macro reference==


{| class="wikitable" style="width:60%; background-color:#FFFFFF;"
{| class="wikitable" style="width:60%; background-color:#FFFFFF;"

Revision as of 14:13, 20 January 2023

Author MatrixTSL
Version 1.0
Category Timing


PIC32 Core Timer component

Allows for easy and accurate timings using the built in Core timer on the PIC32 devices.

Component Source Code

Please click here for the component source code: FC_Comp_Source_TimerComponentPIC32Core.fcfx

Detailed description

No detailed description exists yet for this component

Examples

No additional examples


Macro reference

Start_S
A none blocking function that allows for accurate delays to be specified in seconds using the core timer. 
- ULONG Delay
 
- VOID Return


Start_InstructionCount
A none blocking function that allows for accurate delays to be specified in FOSC instructions using the core timer. 
- ULONG Delay
 
- VOID Return


Delay_S
A blocking function that allows for accurate delays to be specified in seconds using the core timer. 
- ULONG Delay
 
- VOID Return


Start_Ms
A none blocking function that allows for accurate delays to be specified in milliseconds using the core timer. 
- ULONG Delay
 
- VOID Return


Start_Us
A none blocking function that allows for accurate delays to be specified in micro seconds using the core timer. 
- ULONG Delay
 
- VOID Return


Delay_Ms
A blocking function that allows for accurate delays to be specified in milliseconds using the core timer. 
- ULONG Delay
 
- VOID Return


Delay_InstructionCount
A blocking function that allows for accurate delays to be specified in FOSC instructions using the core timer. 
- ULONG Delay
 
- VOID Return


Start_Ns
A none blocking function that allows for accurate delays to be specified in nano seconds using the core timer. 
- ULONG Delay
 
- VOID Return


Delay_Us
A blocking function that allows for accurate delays to be specified in micro seconds using the core timer. 
- ULONG Delay
 
- VOID Return


Delay_Ns
A blocking function that allows for accurate delays to be specified in nano seconds using the core timer. 
- ULONG Delay
 
- VOID Return


Check_Counter
Checks to see if the counter time is elapsed. Used in conjunction with the Start_ component macros. Returns 1 if complete or 0 if still counting. 
- BOOL Return



Property reference

Properties