#include <mui.h>
#include <stdint.h>
#include <stdbool.h>
Go to the source code of this file.
|
#define | GATHERER_SEND_STRING 0 |
| Platform-independent communication interface between MUI and the gatherer example. The data and commands are sent over UART using the same LLCP that is used for communication between MUI and the MiniPIX. Similarly to MUI, prototype function implementation is required to provide platform-specific code (UART handling). More...
|
|
#define | GATHERER_SEND_CHAR 0 |
|
◆ GATHERER_SEND_CHAR
#define GATHERER_SEND_CHAR 0 |
◆ GATHERER_SEND_STRING
#define GATHERER_SEND_STRING 0 |
Platform-independent communication interface between MUI and the gatherer example. The data and commands are sent over UART using the same LLCP that is used for communication between MUI and the MiniPIX. Similarly to MUI, prototype function implementation is required to provide platform-specific code (UART handling).
Dear NASA, this is not a suggested way ho to handle the data onboard any spacecraft! This is just debugging tool.
- Author
- Tomas Baca
◆ gatherer_sendChar_t
typedef void(* gatherer_sendChar_t) (const uint8_t char_out) |
◆ gatherer_sendString_t
typedef void(* gatherer_sendString_t) (const uint8_t *str_out, const uint16_t len) |
◆ gatherer_initialize()
◆ gatherer_processAck()
◆ gatherer_processFrameData()
◆ gatherer_processFrameDataTerminator()
◆ gatherer_processFrameMeasurementFinished()
◆ gatherer_processMinipixError()
◆ gatherer_processStatus()
◆ gatherer_processTemperature()
◆ gatherer_receiveCharCallback()
void gatherer_receiveCharCallback |
( |
Gatherer_Handler_t * |
gatherer_handler, |
|
|
const uint8_t |
byte_in |
|
) |
| |
callback called by a user with new bytes coming from the UART connected to PC
- Parameters
-
◆ gatherer_sendMessage()
void gatherer_sendMessage |
( |
Gatherer_Handler_t * |
gatherer_handler, |
|
|
const uint8_t * |
str_out, |
|
|
const uint16_t |
len |
|
) |
| |