LibDriver NTC
Loading...
Searching...
No Matches
ntc link driver function

ntc link driver modules More...

Collaboration diagram for ntc link driver function:

Macros

#define DRIVER_NTC_LINK_INIT(HANDLE, STRUCTURE)
 initialize ntc_handle_t structure
#define DRIVER_NTC_LINK_ADC_INIT(HANDLE, FUC)
 link adc_init function
#define DRIVER_NTC_LINK_ADC_DEINIT(HANDLE, FUC)
 link adc_deinit function
#define DRIVER_NTC_LINK_ADC_READ(HANDLE, FUC)
 link adc_read function
#define DRIVER_NTC_LINK_DELAY_MS(HANDLE, FUC)
 link delay_ms function
#define DRIVER_NTC_LINK_DEBUG_PRINT(HANDLE, FUC)
 link debug_print function

Detailed Description

ntc link driver modules

Macro Definition Documentation

◆ DRIVER_NTC_LINK_ADC_DEINIT

#define DRIVER_NTC_LINK_ADC_DEINIT ( HANDLE,
FUC )
Value:
(HANDLE)->adc_deinit = FUC

link adc_deinit function

Parameters
[in]HANDLEpointer to a ntc handle structure
[in]FUCpointer to an adc_deinit function address
Note
none

Definition at line 190 of file driver_ntc.h.

◆ DRIVER_NTC_LINK_ADC_INIT

#define DRIVER_NTC_LINK_ADC_INIT ( HANDLE,
FUC )
Value:
(HANDLE)->adc_init = FUC

link adc_init function

Parameters
[in]HANDLEpointer to a ntc handle structure
[in]FUCpointer to an adc_init function address
Note
none

Definition at line 182 of file driver_ntc.h.

◆ DRIVER_NTC_LINK_ADC_READ

#define DRIVER_NTC_LINK_ADC_READ ( HANDLE,
FUC )
Value:
(HANDLE)->adc_read = FUC

link adc_read function

Parameters
[in]HANDLEpointer to a ntc handle structure
[in]FUCpointer to an adc_read function address
Note
none

Definition at line 198 of file driver_ntc.h.

◆ DRIVER_NTC_LINK_DEBUG_PRINT

#define DRIVER_NTC_LINK_DEBUG_PRINT ( HANDLE,
FUC )
Value:
(HANDLE)->debug_print = FUC

link debug_print function

Parameters
[in]HANDLEpointer to a ntc handle structure
[in]FUCpointer to a debug_print function address
Note
none

Definition at line 214 of file driver_ntc.h.

◆ DRIVER_NTC_LINK_DELAY_MS

#define DRIVER_NTC_LINK_DELAY_MS ( HANDLE,
FUC )
Value:
(HANDLE)->delay_ms = FUC

link delay_ms function

Parameters
[in]HANDLEpointer to a ntc handle structure
[in]FUCpointer to a delay_ms function address
Note
none

Definition at line 206 of file driver_ntc.h.

◆ DRIVER_NTC_LINK_INIT

#define DRIVER_NTC_LINK_INIT ( HANDLE,
STRUCTURE )
Value:
memset(HANDLE, 0, sizeof(STRUCTURE))

initialize ntc_handle_t structure

Parameters
[in]HANDLEpointer to a ntc handle structure
[in]STRUCTUREntc_handle_t
Note
none

Definition at line 174 of file driver_ntc.h.