2014-08-13 14:52:12 -03:00
|
|
|
/*
|
|
|
|
* prucomm.h - structure definitions for communication
|
|
|
|
*
|
|
|
|
*/
|
2016-02-17 21:26:01 -04:00
|
|
|
#pragma once
|
2014-08-13 14:52:12 -03:00
|
|
|
|
|
|
|
#include "pru_defs.h"
|
|
|
|
|
2014-10-07 00:05:11 -03:00
|
|
|
#define NUM_RING_ENTRIES 300
|
2014-08-13 14:52:12 -03:00
|
|
|
|
|
|
|
#define PWM_CMD_MAGIC 0xf00fbaaf
|
|
|
|
#define PWM_REPLY_MAGIC 0xbaaff00f
|
|
|
|
|
|
|
|
struct ring_buffer {
|
|
|
|
volatile uint16_t ring_head;
|
|
|
|
volatile uint16_t ring_tail;
|
|
|
|
struct {
|
|
|
|
uint16_t pin_value;
|
|
|
|
uint16_t delta_t;
|
|
|
|
} buffer[NUM_RING_ENTRIES];
|
|
|
|
};
|
|
|
|
|
|
|
|
/* the command is at the start of shared DPRAM */
|
|
|
|
#define RBUFF ((volatile struct ring_buffer *)DPRAM_SHARED)
|