LCDDriver_NXP_Arduino 0.8.1
Analog Front-End (AFE) device operation sample code for Arduino
|
#include <AFE_NXP.h>
Public Types | |
using | raw_t = int32_t |
using | microvolt_t = double |
Public Member Functions | |
AFE_base (bool spi_addr, bool highspeed_variant, int nINT, int DRDY, int SYN, int nRESET) | |
virtual | ~AFE_base () |
virtual void | begin (void) |
virtual void | boot (void)=0 |
virtual void | reset (bool hardware_reset=false)=0 |
virtual void | open_logical_channel (int ch, uint16_t cc0, uint16_t cc1, uint16_t cc2, uint16_t cc3)=0 |
virtual void | open_logical_channel (int ch, const uint16_t(&cc)[4])=0 |
virtual void | close_logical_channel (int ch)=0 |
virtual void | close_logical_channel (void)=0 |
virtual void | start (int ch)=0 |
virtual void | start (void)=0 |
virtual void | start_continuous_conversion (void)=0 |
virtual void | DRDY_by_sequencer_done (bool flag=true)=0 |
virtual raw_t | read (int ch)=0 |
virtual void | read (raw_t *data_ptr)=0 |
virtual raw_t | start_and_read (int ch) |
template<typename T> | |
void | start_and_read (T data) |
double | raw2uv (int ch, raw_t value) |
double | raw2mv (int ch, raw_t value) |
double | raw2v (int ch, raw_t value) |
double | coeff_mV (int ch) |
double | drdy_delay (int ch) |
double | drdy_delay (void) |
int | enabled_logical_channels (void) |
void | use_DRDY_trigger (bool use=true) |
![]() | |
void | txrx (uint8_t *data, int size) |
void | write_r16 (uint16_t reg) |
void | write_r16 (uint16_t reg, uint16_t val) |
uint16_t | read_r16 (uint16_t reg) |
void | write_r24 (uint16_t reg, uint32_t val) |
int32_t | read_r24 (uint16_t reg) |
void | burst (uint32_t *data, int length, int width=3) |
Protected Member Functions | |
int | bit_count (uint32_t value) |
virtual void | init (void) |
void | default_drdy_cb (void) |
int | wait_conversion_complete (double delay=-1.0) |
Static Protected Member Functions | |
static void | DRDY_cb (void) |
Protected Attributes | |
bool | dev_add |
bool | highspeed_variant |
int | pin_nINT |
int | pin_DRDY |
int | pin_SYN |
int | pin_nRESET |
int | enabled_channels |
double | coeff_uV [16] |
double | ch_delay [16] |
double | total_delay |
uint32_t | drdy_count |
volatile bool | drdy_flag |
Static Protected Attributes | |
static double | delay_accuracy = 1.1 |
static constexpr uint32_t | timeout_limit = 100000000 |
NXP Analog Front End class library for Arduino
Copyright: 2023 - 2025 Tedd OKANO Released under the MIT license
A simple class library for NXP Analog Front End: NAFE13388 evaluation boards
using AFE_base::microvolt_t = double |
using AFE_base::raw_t = int32_t |
AFE_base::AFE_base | ( | bool | spi_addr, |
bool | highspeed_variant, | ||
int | nINT, | ||
int | DRDY, | ||
int | SYN, | ||
int | nRESET ) |
Constructor to create a AFE_base instance
Definition at line 16 of file AFE_NXP.cpp.
Referenced by NAFE13388_Base::NAFE13388_Base().
|
virtual |
Destractor
Definition at line 31 of file AFE_NXP.cpp.
|
virtual |
Begin the device operation
NAFE13388 initialization. It does following steps (1) Call reset() (2) Call boot()
Definition at line 45 of file AFE_NXP.cpp.
|
protected |
Definition at line 76 of file AFE_NXP.cpp.
|
pure virtual |
|
pure virtual |
|
pure virtual |
All logical channel disable
Implemented in NAFE13388_Base.
|
inline |
|
protected |
Referenced by init().
|
pure virtual |
|
staticprotected |
Referenced by init().
|
inline |
|
inline |
|
inline |
|
protectedvirtual |
Definition at line 35 of file AFE_NXP.cpp.
Referenced by begin().
|
pure virtual |
Configure logical channel
ch | logical channel number (0 ~ 15) |
cc | array for CH_CONFIG0, CH_CONFIG1, CH_CONFIG2 and CH_CONFIG3 values |
Implemented in NAFE13388_Base.
|
pure virtual |
set callback function when DRDY comes Configure logical channel
ch | logical channel number (0 ~ 15) |
cc0 | 16bit value to be set CH_CONFIG0 register (0x20) |
cc1 | 16bit value to be set CH_CONFIG1 register (0x21) |
cc2 | 16bit value to be set CH_CONFIG2 register (0x22) |
cc3 | 16bit value to be set CH_CONFIG3 register (0x23) |
Implemented in NAFE13388_Base.
|
inline |
Convert raw output to milli-volt
ch | logical channel number to select its gain coefficient |
value | ADC read value |
Definition at line 150 of file AFE_NXP.h.
Referenced by NAFE13388_Base::self_calibrate().
|
inline |
|
inline |
Convert raw output to volt
ch | logical channel number to select its gain coefficient |
value | ADC read value |
Definition at line 160 of file AFE_NXP.h.
Referenced by NAFE13388_Base::self_calibrate().
|
pure virtual |
Read ADC for single channel
ch | logical channel number (0 ~ 15) |
Implemented in NAFE13388_Base.
Referenced by start_and_read(), and start_and_read().
|
pure virtual |
Read ADC for all channel
data_ptr | pointer to array to store ADC data |
Implemented in NAFE13388_Base.
|
pure virtual |
|
pure virtual |
|
pure virtual |
Start ADC on all logical channel
Implemented in NAFE13388_Base.
Referenced by start_and_read(), and start_and_read().
|
virtual |
Start and read ADC for single channel
ch | logical channel number (0 ~ 15) |
Definition at line 52 of file AFE_NXP.cpp.
Referenced by NAFE13388_Base::self_calibrate().
|
inline |
|
pure virtual |
Start continuous AD conversion
Implemented in NAFE13388_Base.
void AFE_base::use_DRDY_trigger | ( | bool | use = true | ) |
Switch to use DRDY to start ADC result reading
use | true (default) to use DRDY. if false, caliculated delay is used to start reading. |
|
protected |
Definition at line 89 of file AFE_NXP.cpp.
Referenced by start_and_read(), and start_and_read().
|
protected |
Channel delay
Definition at line 219 of file AFE_NXP.h.
Referenced by NAFE13388_Base::calc_delay(), NAFE13388_Base::channel_info_update(), drdy_delay(), NAFE13388_Base::open_logical_channel(), and start_and_read().
|
protected |
Coefficient to convert from ADC read value to micro-volt
Definition at line 216 of file AFE_NXP.h.
Referenced by coeff_mV(), NAFE13388_Base::open_logical_channel(), raw2mv(), raw2uv(), and raw2v().
|
staticprotected |
NXP Analog Front End class library for MCX
Copyright: 2023 - 2025 Tedd OKANO Released under the MIT license
Definition at line 221 of file AFE_NXP.h.
Referenced by start_and_read(), start_and_read(), and wait_conversion_complete().
|
protected |
Definition at line 203 of file AFE_NXP.h.
Referenced by AFE_base().
|
protected |
Definition at line 225 of file AFE_NXP.h.
Referenced by init(), and wait_conversion_complete().
|
protected |
Number of enabled logical channels
Definition at line 213 of file AFE_NXP.h.
Referenced by AFE_base(), NAFE13388_Base::channel_info_update(), enabled_logical_channels(), and NAFE13388_Base::read().
|
protected |
Definition at line 204 of file AFE_NXP.h.
Referenced by AFE_base(), and NAFE13388_Base::calc_delay().
|
protected |
Definition at line 206 of file AFE_NXP.h.
Referenced by AFE_base(), and init().
|
protected |
Definition at line 205 of file AFE_NXP.h.
Referenced by AFE_base().
|
protected |
Definition at line 208 of file AFE_NXP.h.
Referenced by AFE_base(), and NAFE13388_Base::reset().
|
protected |
Definition at line 207 of file AFE_NXP.h.
Referenced by AFE_base().
|
staticconstexprprotected |
Definition at line 227 of file AFE_NXP.h.
Referenced by wait_conversion_complete().
|
protected |
Definition at line 220 of file AFE_NXP.h.
Referenced by NAFE13388_Base::channel_info_update(), drdy_delay(), and start_and_read().