rusEFI
The most advanced open source ECU
Loading...
Searching...
No Matches
Functions
max3185x.h File Reference

Detailed Description

Date
Sep 17, 2014
Author
Andrey Belomutskiy, (c) 2012-2020

Definition in file max3185x.h.

Functions

void initMax3185x (spi_device_e device, egt_cs_array_t max31855_cs)
 
void stopMax3185x ()
 
void startMax3185x (spi_device_e device, egt_cs_array_t max31855_cs)
 

Function Documentation

◆ initMax3185x()

void initMax3185x ( spi_device_e  device,
egt_cs_array_t  max31855_cs 
)

Definition at line 552 of file max3185x.cpp.

552 {
553 addConsoleAction("egtinfo", (Void) showEgtInfo);
554 addConsoleAction("egtread", (Void) egtRead);
555
556 startMax3185x(device, max31855_cs);
557}
void addConsoleAction(const char *token, Void callback)
Register console action without parameters.
void(* Void)(void)
static Lps25 device
Definition init_baro.cpp:4
static void showEgtInfo()
Definition max3185x.cpp:544
void startMax3185x(spi_device_e device, egt_cs_array_t max31855_cs)
Definition max3185x.cpp:563
static void egtRead()
Definition max3185x.cpp:548

Referenced by initEgt().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ startMax3185x()

void startMax3185x ( spi_device_e  device,
egt_cs_array_t  max31855_cs 
)

Definition at line 563 of file max3185x.cpp.

564{
565 instance.start(device, max31855_cs);
566}
static Max3185xRead instance
Definition max3185x.cpp:542

Referenced by initMax3185x(), and startEgt().

Here is the caller graph for this function:

◆ stopMax3185x()

void stopMax3185x ( )

Definition at line 559 of file max3185x.cpp.

559 {
560 instance.stop();
561}

Referenced by stopEgt().

Here is the caller graph for this function:

Go to the source code of this file.