Changeset - a72d393244e6
[Not reviewed]
default
0 4 2
matthewreed - 8 years ago 2017-07-02 20:26:42

Added can buffering and protocol updates
6 files changed with 121 insertions and 12 deletions:
0 comments (0 inline, 0 general)
inc/can.h
Show inline comments
 
@@ -5,17 +5,20 @@
 
#include <string.h>
 
#include "stm32f0xx_hal.h"
 
 
#include "config.h"
 
#include "led.h"
 
#include "protocol.h"
 
#include "can_buffer.h"
 
 
extern CAN_HandleTypeDef can_handle;
 
 
void can_init(uint32_t rx_id, uint32_t broadcast_id);
 
void can_send_test(uint16_t id);
 
bool can_send(uint32_t id, uint32_t ide, uint8_t dlc, uint8_t data[8]);
 
void can_set_receive_mask(uint32_t mask);
 
void can_set_receive_id(uint32_t id);
 
bool can_silence_bus(bool value);
 
void can_receive(void);
 
void can_process_receive_buffer(void);
 
 
#endif //_CAN_H_
inc/can_buffer.h
Show inline comments
 
new file 100644
 
#ifndef _CAN_BUFFER_H
 
#define _CAN_BUFFER_H
 

	
 
#include <string.h>
 
#include "system.h"
 

	
 
#define CAN_BUFFER_SIZE 8
 

	
 
typedef enum CanBufferStatus {CAN_BUFFER_OK, CAN_BUFFER_EMPTY, CAN_BUFFER_FULL} CanBufferStatus;
 

	
 
typedef struct CanBuffer
 
{
 
    volatile CanRxMsgTypeDef data[CAN_BUFFER_SIZE];
 
    volatile uint8_t head;
 
    volatile uint8_t tail;
 
    volatile uint8_t count;
 
} CanBuffer;
 

	
 
void can_buffer_init(volatile CanBuffer *buffer);
 
CanBufferStatus can_buffer_add(volatile CanBuffer *buffer, CanRxMsgTypeDef *msg);
 
volatile CanRxMsgTypeDef* can_buffer_remove(volatile CanBuffer *buffer);
 
bool can_buffer_is_empty(volatile CanBuffer *buffer);
 
uint8_t can_buffer_size(volatile CanBuffer *buffer);
 

	
 
#endif //_CAN_BUFFER_H
inc/protocol.h
Show inline comments
 
@@ -40,13 +40,13 @@ typedef enum {
 
typedef enum {
 
    NONE = 0x0000,
 
    DIGITAL_INPUT = 0x0001,
 
    FREQ_INPUT = 0x0002,
 
    ANALOG_INPUT = 0x0003,
 
    DIGITAL_OUTPUT = 0x0004,
 
    FREQ_OUTPUT = 0x0005,
 
    PWM_OUTPUT = 0x0005,
 
    ANALOG_OUTPUT = 0x0006,
 
    AIR_TEMP = 0x0007,
 
    AIR_HUMIDITY = 0x0008,
 
    AIR_PRESSURE = 0x0009,
 
    AMBIENT_LIGHT = 0x000A,
 
    WATER_TEMP = 0x000B,
src/can.c
Show inline comments
 
@@ -7,12 +7,14 @@ CanRxMsgTypeDef can_rx_msg;
 
CanTxMsgTypeDef can_tx_msg;
 
 
bool can_silenced;
 
uint32_t can_broadcast_id;
 
uint32_t can_rx_id;
 
 
volatile CanBuffer can_rx_buffer;
 
 
void can_init(uint32_t rx_id, uint32_t broadcast_id)
 
{
 
    can_handle.Instance = CAN;
 
    can_handle.pRxMsg = &can_rx_msg;
 
    can_handle.pTxMsg = &can_tx_msg;
 
 
@@ -40,19 +42,21 @@ void can_init(uint32_t rx_id, uint32_t b
 
    can_filter.FilterMaskIdHigh = (mask >> 11) & 0xFFFF;
 
    can_filter.FilterMaskIdLow = (mask << 5) & 0xFFFF;
 
    can_filter.FilterFIFOAssignment = CAN_FILTER_FIFO0;
 
    can_filter.FilterActivation = ENABLE;
 
    HAL_CAN_ConfigFilter(&can_handle, &can_filter);
 
 
    HAL_NVIC_SetPriority(CEC_CAN_IRQn, 1, 0);
 
    HAL_NVIC_EnableIRQ(CEC_CAN_IRQn);
 
    HAL_CAN_Receive_IT(&can_handle, CAN_FIFO0);
 
    //HAL_NVIC_SetPriority(CEC_CAN_IRQn, 1, 0);
 
    //HAL_NVIC_EnableIRQ(CEC_CAN_IRQn);
 
    //HAL_CAN_Receive_IT(&can_handle, CAN_FIFO0);
 
 
    can_silenced = false;
 
    can_rx_id = rx_id;
 
    can_broadcast_id = broadcast_id;
 
 
    can_buffer_init(&can_rx_buffer);
 
}
 
 
void can_send_test(uint16_t id)
 
{
 
    can_handle.pTxMsg->StdId = id;
 
    can_handle.pTxMsg->IDE = CAN_ID_STD;
 
@@ -117,20 +121,48 @@ bool can_silence_bus(bool value)
 
 
    can_silenced = value;
 
 
    return result;
 
}
 
 
void can_receive(void)
 
{
 
    if ((can_handle.Instance->RF0R & CAN_RF0R_FMP0) != 0)
 
    {
 
        HAL_StatusTypeDef status = HAL_CAN_Receive(&can_handle, 0, 0);
 
 
        if ((status == HAL_OK) & ((can_handle.pRxMsg->StdId == can_rx_id) | (can_handle.pRxMsg->StdId == can_broadcast_id)))
 
        {
 
            can_buffer_add(&can_rx_buffer, can_handle.pRxMsg);
 
        }
 
        //can_handle.Instance->RF0R |= CAN_RF0R_RFOM0;
 
 
        led_blink_once(LED_CAN, 250);
 
    }
 
}
 
 
void can_process_receive_buffer(void)
 
{
 
    CanRxMsgTypeDef msg;
 
    uint8_t size = can_buffer_size(&can_rx_buffer);
 
 
    for (uint8_t i = 0; i < size; i++)
 
    {
 
        msg = *can_buffer_remove(&can_rx_buffer);
 
        protocol_receive_message(&msg);
 
    }
 
}
 
 
void HAL_CAN_RxCpltCallback(CAN_HandleTypeDef* hcan)
 
{
 
    if ((hcan->pRxMsg->StdId == can_rx_id) | (hcan->pRxMsg->StdId == can_broadcast_id))
 
    {
 
        protocol_receive_message(hcan->pRxMsg);
 
        can_buffer_add(&can_rx_buffer, hcan->pRxMsg);
 
    }
 
 
    led_blink_once(LED_CAN, 500);
 
    led_blink_once(LED_ERROR, 500);
 
    HAL_CAN_Receive_IT(&can_handle, CAN_FIFO0);
 
}
 
 
void HAL_CAN_TxCpltCallback(CAN_HandleTypeDef* hcan) {}
 
 
void HAL_CAN_ErrorCallback(CAN_HandleTypeDef* hcan)
src/can_buffer.c
Show inline comments
 
new file 100644
 
#include "can_buffer.h"
 

	
 
void can_buffer_init(volatile CanBuffer *buffer)
 
{
 
    memset((void*)buffer, 0, sizeof(CanBuffer));
 
}
 

	
 
CanBufferStatus can_buffer_add(volatile CanBuffer *buffer, CanRxMsgTypeDef *msg)
 
{
 
    if ((uint16_t) buffer->count < ((uint16_t) CAN_BUFFER_SIZE)) {
 
        buffer->data[buffer->head] = *msg;
 
        buffer->head = (buffer->head + 1) % CAN_BUFFER_SIZE;
 
        buffer->count++;
 
        return CAN_BUFFER_OK;
 
    }
 
    else {
 
        return CAN_BUFFER_FULL;
 
    }
 
}
 

	
 
volatile CanRxMsgTypeDef* can_buffer_remove(volatile CanBuffer *buffer)
 
{
 
    volatile CanRxMsgTypeDef* msg;
 
    if (buffer->count > 0) {
 
        msg = &buffer->data[buffer->tail];
 
        buffer->tail = (buffer->tail + 1) % CAN_BUFFER_SIZE;
 
        buffer->count--;
 
    }
 
    return msg;
 
}
 

	
 
bool can_buffer_is_empty(volatile CanBuffer *buffer)
 
{
 
    return (buffer->count < 1);
 
}
 

	
 
uint8_t can_buffer_size(volatile CanBuffer *buffer)
 
{
 
    return buffer->count;
 
}
src/protocol.c
Show inline comments
 
@@ -4,12 +4,13 @@ protocol_device_t protocol_device;
 
flash_settings_t protocol_settings;
 
 
void protocol_init(protocol_device_t device)
 
{
 
    protocol_device = device;
 
    flash_restore(&protocol_settings);
 
    led_set_brightness(protocol_settings.val.led_brightness);
 
 
    can_init(protocol_settings.val.can_id, DEFAULT_BROADCAST_ID);
 
}
 
 
flash_settings_t* protocol_get_settings(void)
 
{
 
@@ -124,22 +125,30 @@ bool protocol_send_data(protocol_data_ke
 
}
 
 
bool _protocol_config(protocol_message_t* message)
 
{
 
    bool result = false;
 
 
    if (message->key == LED_BRIGHTNESS)
 
    if (message->key == CAN_ID)
 
    {
 
        uint32_t can_id = (uint16_t) message->data.float_data;
 
        protocol_settings.val.can_id = can_id;
 
        flash_save(&protocol_settings);
 
    }
 
    else if (message->key == DATA_RATE)
 
    {
 
        uint16_t data_rate = (uint16_t) message->data.float_data;
 
        protocol_settings.val.data_rate = data_rate * 1000;
 
        flash_save(&protocol_settings);
 
    }
 
    else if (message->key == LED_BRIGHTNESS)
 
    {
 
        uint8_t brightness = (uint8_t)message->data.float_data;
 
        result = led_set_brightness(brightness);
 
        protocol_settings.val.led_brightness = brightness;
 
    }
 
    else if (message->key == DATA_RATE)
 
    {
 
        uint16_t data_rate = (uint16_t) message->data.float_data;
 
        protocol_settings.val.data_rate = data_rate;
 
        flash_save(&protocol_settings);
 
    }
 
    else
 
    {
 
        //call config weak function
 
        result = protocol_config(message);
 
    }
0 comments (0 inline, 0 general)