You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
296 lines
7.4 KiB
296 lines
7.4 KiB
//
|
|
// Created by MightyPork on 2017/11/25.
|
|
//
|
|
|
|
#include "comm/messages.h"
|
|
#include "unit_base.h"
|
|
#include "unit_dout.h"
|
|
|
|
/** Private data structure */
|
|
struct priv {
|
|
char port_name;
|
|
uint16_t pins; // pin mask
|
|
uint16_t initial; // initial pin states
|
|
uint16_t open_drain; // open drain pins
|
|
|
|
GPIO_TypeDef *port;
|
|
};
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
/** Load from a binary buffer stored in Flash */
|
|
static void DO_loadBinary(Unit *unit, PayloadParser *pp)
|
|
{
|
|
struct priv *priv = unit->data;
|
|
|
|
uint8_t version = pp_u8(pp);
|
|
(void)version;
|
|
|
|
priv->port_name = pp_char(pp);
|
|
priv->pins = pp_u16(pp);
|
|
priv->initial = pp_u16(pp);
|
|
priv->open_drain = pp_u16(pp);
|
|
}
|
|
|
|
/** Write to a binary buffer for storing in Flash */
|
|
static void DO_writeBinary(Unit *unit, PayloadBuilder *pb)
|
|
{
|
|
struct priv *priv = unit->data;
|
|
|
|
pb_u8(pb, 0); // version
|
|
|
|
pb_char(pb, priv->port_name);
|
|
pb_u16(pb, priv->pins);
|
|
pb_u16(pb, priv->initial);
|
|
pb_u16(pb, priv->open_drain);
|
|
}
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
/** Parse a key-value pair from the INI file */
|
|
static error_t DO_loadIni(Unit *unit, const char *key, const char *value)
|
|
{
|
|
bool suc = true;
|
|
struct priv *priv = unit->data;
|
|
|
|
if (streq(key, "port")) {
|
|
suc = parse_port(value, &priv->port_name);
|
|
}
|
|
else if (streq(key, "pins")) {
|
|
priv->pins = parse_pinmask(value, &suc);
|
|
}
|
|
else if (streq(key, "initial")) {
|
|
priv->initial = parse_pinmask(value, &suc);
|
|
}
|
|
else if (streq(key, "open-drain")) {
|
|
priv->open_drain = parse_pinmask(value, &suc);
|
|
}
|
|
else {
|
|
return E_BAD_KEY;
|
|
}
|
|
|
|
if (!suc) return E_BAD_VALUE;
|
|
return E_SUCCESS;
|
|
}
|
|
|
|
/** Generate INI file section for the unit */
|
|
static void DO_writeIni(Unit *unit, IniWriter *iw)
|
|
{
|
|
struct priv *priv = unit->data;
|
|
|
|
iw_comment(iw, "Port name");
|
|
iw_entry(iw, "port", "%c", priv->port_name);
|
|
|
|
iw_comment(iw, "Pins (comma separated, supports ranges)");
|
|
iw_entry(iw, "pins", "%s", str_pinmask(priv->pins, unit_tmp512));
|
|
|
|
iw_comment(iw, "Initially high pins");
|
|
iw_entry(iw, "initial", "%s", str_pinmask(priv->initial, unit_tmp512));
|
|
|
|
iw_comment(iw, "Open-drain pins");
|
|
iw_entry(iw, "open-drain", "%s", str_pinmask(priv->open_drain, unit_tmp512));
|
|
}
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
/** Allocate data structure and set defaults */
|
|
static error_t DO_preInit(Unit *unit)
|
|
{
|
|
bool suc = true;
|
|
struct priv *priv = unit->data = calloc_ck(1, sizeof(struct priv), &suc);
|
|
if (!suc) return E_OUT_OF_MEM;
|
|
|
|
// some defaults
|
|
priv->port_name = 'A';
|
|
priv->pins = 0x0001;
|
|
priv->open_drain = 0x0000;
|
|
priv->initial = 0x0000;
|
|
|
|
return E_SUCCESS;
|
|
}
|
|
|
|
/** Finalize unit set-up */
|
|
static error_t DO_init(Unit *unit)
|
|
{
|
|
bool suc = true;
|
|
struct priv *priv = unit->data;
|
|
|
|
priv->initial &= priv->pins;
|
|
priv->open_drain &= priv->pins;
|
|
|
|
// --- Parse config ---
|
|
priv->port = port2periph(priv->port_name, &suc);
|
|
if (!suc) return E_BAD_CONFIG;
|
|
|
|
// Claim all needed pins
|
|
TRY(rsc_claim_gpios(unit, priv->port_name, priv->pins));
|
|
|
|
uint16_t mask = 1;
|
|
for (int i = 0; i < 16; i++, mask <<= 1) {
|
|
if (priv->pins & mask) {
|
|
uint32_t ll_pin = pin2ll((uint8_t) i, &suc);
|
|
|
|
// --- Init hardware ---
|
|
LL_GPIO_SetPinMode(priv->port, ll_pin, LL_GPIO_MODE_OUTPUT);
|
|
|
|
LL_GPIO_SetPinOutputType(priv->port, ll_pin, (priv->open_drain & mask) ?
|
|
LL_GPIO_OUTPUT_OPENDRAIN :
|
|
LL_GPIO_OUTPUT_PUSHPULL);
|
|
|
|
LL_GPIO_SetPinSpeed(priv->port, ll_pin, LL_GPIO_SPEED_FREQ_HIGH);
|
|
}
|
|
}
|
|
|
|
// Set the initial state
|
|
priv->port->ODR &= ~priv->pins;
|
|
priv->port->ODR |= priv->initial;
|
|
|
|
return E_SUCCESS;
|
|
}
|
|
|
|
/** Tear down the unit */
|
|
static void DO_deInit(Unit *unit)
|
|
{
|
|
struct priv *priv = unit->data;
|
|
|
|
// de-init the pins only if inited correctly
|
|
if (unit->status == E_SUCCESS) {
|
|
assert_param(priv->port);
|
|
|
|
bool suc = true;
|
|
uint16_t mask = 1;
|
|
for (int i = 0; i < 16; i++, mask <<= 1) {
|
|
if (priv->pins & mask) {
|
|
|
|
uint32_t ll_pin = pin2ll((uint8_t) i, &suc);
|
|
assert_param(suc); // this should never fail if we got this far
|
|
|
|
// configure the pin as analog
|
|
LL_GPIO_SetPinMode(priv->port, ll_pin, LL_GPIO_MODE_ANALOG);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Release all resources
|
|
rsc_teardown(unit);
|
|
|
|
// Free memory
|
|
free(unit->data);
|
|
unit->data = NULL;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
error_t UU_DO_Write(Unit *unit, uint16_t packed)
|
|
{
|
|
CHECK_TYPE(unit, &UNIT_DOUT);
|
|
|
|
struct priv *priv = unit->data;
|
|
uint16_t mask = priv->pins;
|
|
uint16_t spread = port_spread(packed, mask);
|
|
|
|
uint16_t set = spread;
|
|
uint16_t reset = ((~spread) & mask);
|
|
priv->port->BSRR = set | (reset << 16);
|
|
return E_SUCCESS;
|
|
}
|
|
|
|
error_t UU_DO_Set(Unit *unit, uint16_t packed)
|
|
{
|
|
CHECK_TYPE(unit, &UNIT_DOUT);
|
|
|
|
struct priv *priv = unit->data;
|
|
uint16_t mask = priv->pins;
|
|
uint16_t spread = port_spread(packed, mask);
|
|
|
|
priv->port->BSRR = spread;
|
|
return E_SUCCESS;
|
|
}
|
|
|
|
error_t UU_DO_Clear(Unit *unit, uint16_t packed)
|
|
{
|
|
CHECK_TYPE(unit, &UNIT_DOUT);
|
|
|
|
struct priv *priv = unit->data;
|
|
uint16_t mask = priv->pins;
|
|
uint16_t spread = port_spread(packed, mask);
|
|
|
|
priv->port->BSRR = (spread<<16);
|
|
return E_SUCCESS;
|
|
}
|
|
|
|
error_t UU_DO_Toggle(Unit *unit, uint16_t packed)
|
|
{
|
|
CHECK_TYPE(unit, &UNIT_DOUT);
|
|
|
|
struct priv *priv = unit->data;
|
|
uint16_t mask = priv->pins;
|
|
uint16_t spread = port_spread(packed, mask);
|
|
|
|
uint16_t flipped = (uint16_t) (~priv->port->ODR) & mask;
|
|
uint16_t set = flipped & spread;
|
|
uint16_t reset = ((~flipped) & mask) & spread;
|
|
priv->port->BSRR = set | (reset<<16);
|
|
return E_SUCCESS;
|
|
}
|
|
|
|
error_t UU_DO_GetPinCount(Unit *unit, uint8_t *count)
|
|
{
|
|
CHECK_TYPE(unit, &UNIT_DOUT);
|
|
struct priv *priv = unit->data;
|
|
|
|
uint32_t packed = port_pack(0xFFFF, priv->pins);
|
|
*count = (uint8_t)(32 - __CLZ(packed));
|
|
return E_SUCCESS;
|
|
}
|
|
|
|
enum PinCmd_ {
|
|
CMD_WRITE = 0,
|
|
CMD_SET = 1,
|
|
CMD_CLEAR = 2,
|
|
CMD_TOGGLE = 3,
|
|
};
|
|
|
|
/** Handle a request message */
|
|
static error_t DO_handleRequest(Unit *unit, TF_ID frame_id, uint8_t command, PayloadParser *pp)
|
|
{
|
|
struct priv *priv = unit->data;
|
|
|
|
uint16_t packed = pp_u16(pp);
|
|
|
|
switch (command) {
|
|
case CMD_WRITE:
|
|
return UU_DO_Write(unit, packed);
|
|
|
|
case CMD_SET:
|
|
return UU_DO_Set(unit, packed);
|
|
|
|
case CMD_CLEAR:
|
|
return UU_DO_Clear(unit, packed);
|
|
|
|
case CMD_TOGGLE:
|
|
return UU_DO_Toggle(unit, packed);
|
|
|
|
default:
|
|
return E_UNKNOWN_COMMAND;
|
|
}
|
|
}
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
/** Unit template */
|
|
const UnitDriver UNIT_DOUT = {
|
|
.name = "DO",
|
|
.description = "Digital output",
|
|
// Settings
|
|
.preInit = DO_preInit,
|
|
.cfgLoadBinary = DO_loadBinary,
|
|
.cfgWriteBinary = DO_writeBinary,
|
|
.cfgLoadIni = DO_loadIni,
|
|
.cfgWriteIni = DO_writeIni,
|
|
// Init
|
|
.init = DO_init,
|
|
.deInit = DO_deInit,
|
|
// Function
|
|
.handleRequest = DO_handleRequest,
|
|
};
|
|
|