2018-01-14 02:30:07 +00:00
|
|
|
#include "ch.h"
|
|
|
|
#include "hal.h"
|
|
|
|
|
|
|
|
#include "dfi.h"
|
|
|
|
|
|
|
|
|
2018-01-14 15:49:49 +00:00
|
|
|
#define MODULES 10
|
2018-01-14 02:30:07 +00:00
|
|
|
#define FET_COUNT 8
|
2018-01-14 15:49:49 +00:00
|
|
|
#define SEGMENTS 6
|
2018-02-11 19:40:52 +00:00
|
|
|
#define BIT_PER_FET_PER_SEG 8
|
2018-01-14 02:30:07 +00:00
|
|
|
|
2018-02-11 19:40:52 +00:00
|
|
|
//volatile uint8_t data[DATA_LINES][MODULES][FET_COUNT][SEGMENTS];
|
|
|
|
volatile uint8_t data[FET_COUNT][SEGMENTS * MODULES * BIT_PER_FET_PER_SEG];
|
2018-01-14 02:30:07 +00:00
|
|
|
static virtual_timer_t mosfet_timer;
|
|
|
|
|
|
|
|
// prototypes
|
|
|
|
void initializeSRData(void);
|
|
|
|
static void refreshDisplay(void *arg);
|
2018-01-14 15:49:49 +00:00
|
|
|
void shiftOut(uint8_t,uint8_t,uint8_t,uint8_t,uint8_t,uint8_t);
|
2018-01-14 02:30:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
THD_WORKING_AREA(wa_dfiFunc, DFI_THREAD_STACK_SIZE);
|
|
|
|
THD_FUNCTION(dfiFunc, p) {
|
|
|
|
(void)p;
|
|
|
|
chRegSetThreadName("dfi");
|
|
|
|
|
|
|
|
static systime_t last_time_simul = 0;
|
|
|
|
static uint8_t counterBit = 0;
|
2018-02-11 19:40:52 +00:00
|
|
|
|
2018-01-14 02:30:07 +00:00
|
|
|
chVTObjectInit(&mosfet_timer);
|
2018-02-11 19:40:52 +00:00
|
|
|
chVTSet(&mosfet_timer, US2ST(1570), refreshDisplay, NULL);
|
2018-01-14 02:30:07 +00:00
|
|
|
|
|
|
|
while(true) {
|
|
|
|
|
2018-02-11 19:40:52 +00:00
|
|
|
if(ST2MS(chVTTimeElapsedSinceX(last_time_simul)) > 100) {
|
2018-01-14 15:49:49 +00:00
|
|
|
|
2018-02-11 19:40:52 +00:00
|
|
|
for(int fet = 0; fet< FET_COUNT; fet++) {
|
|
|
|
for (size_t i = 0; i < 480; i++) {
|
|
|
|
data[fet][i] = 0xff;
|
|
|
|
}
|
2018-01-14 15:49:49 +00:00
|
|
|
}
|
|
|
|
/*
|
2018-01-14 02:30:07 +00:00
|
|
|
for(int fet=0; fet<FET_COUNT; fet++) {
|
|
|
|
for(int digit=0; digit<BYTE_PER_FET; digit++) {
|
2018-01-14 15:49:49 +00:00
|
|
|
if(fet == 0 && digit == counterDigit) {
|
|
|
|
data[fet][digit] = 0xff; // (1 << counterBit);
|
2018-01-14 02:30:07 +00:00
|
|
|
} else {
|
|
|
|
data[fet][digit] = 0xff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
counterBit++;
|
|
|
|
if(counterBit > 7) {
|
|
|
|
counterBit = 0;
|
|
|
|
counterDigit++;
|
|
|
|
|
|
|
|
if(counterDigit > 5) {
|
|
|
|
counterFet++;
|
|
|
|
counterDigit = 0;
|
|
|
|
counterFet %= FET_COUNT;
|
|
|
|
}
|
|
|
|
}
|
2018-01-14 15:49:49 +00:00
|
|
|
*/
|
|
|
|
counterBit++;
|
2018-01-14 02:30:07 +00:00
|
|
|
last_time_simul = chVTGetSystemTimeX();
|
|
|
|
palTogglePad(GPIOC, GPIOC_LED);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void initializeSRData() {
|
|
|
|
palSetPad(GPIOE, GPIOE_PIN1); //Tells all SRs that uController is sending data
|
|
|
|
|
2018-02-11 19:40:52 +00:00
|
|
|
for (uint16_t i = 0; i < SEGMENTS * MODULES * BIT_PER_FET_PER_SEG; i++) {
|
|
|
|
palWriteGroup(GPIOE, 0b11111100, 0, 0);
|
|
|
|
palSetPad(GPIOE, GPIOE_PIN0); //clock
|
|
|
|
asm ("nop");
|
|
|
|
asm ("nop");
|
|
|
|
asm ("nop");
|
|
|
|
asm ("nop");
|
|
|
|
palClearPad(GPIOE, GPIOE_PIN0); //clock
|
|
|
|
asm ("nop");
|
|
|
|
asm ("nop");
|
2018-01-14 02:30:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
palClearPad(GPIOE, GPIOE_PIN1); //Tells all SRs that uController is done sending data
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-11 19:40:52 +00:00
|
|
|
// all 1.5ms
|
2018-01-14 02:30:07 +00:00
|
|
|
static void refreshDisplay(void *arg) {
|
|
|
|
(void)arg;
|
|
|
|
|
|
|
|
chSysLockFromISR();
|
|
|
|
static int fet = 0;
|
|
|
|
|
|
|
|
fet++;
|
|
|
|
fet %= FET_COUNT;
|
|
|
|
|
|
|
|
|
2018-02-11 19:40:52 +00:00
|
|
|
for (uint16_t i = 0; i < SEGMENTS * MODULES * BIT_PER_FET_PER_SEG; i++) {
|
|
|
|
palClearPort(GPIOE, 0xfc);
|
|
|
|
palWriteGroup(GPIOE, 0xfc, 0, data[fet][i]);
|
|
|
|
|
|
|
|
//palSetPort(GPIOE, data[fet][i]);
|
|
|
|
|
|
|
|
palSetPad(GPIOE, GPIOE_PIN0); //clock
|
|
|
|
asm ("nop");
|
|
|
|
asm ("nop");
|
|
|
|
asm ("nop");
|
|
|
|
asm ("nop");
|
|
|
|
asm ("nop");
|
|
|
|
asm ("nop");
|
|
|
|
asm ("nop");
|
|
|
|
asm ("nop");
|
|
|
|
asm ("nop");
|
|
|
|
asm ("nop");
|
|
|
|
palClearPad(GPIOE, GPIOE_PIN0); //clock
|
2018-01-14 02:30:07 +00:00
|
|
|
}
|
|
|
|
|
2018-02-11 19:40:52 +00:00
|
|
|
|
|
|
|
|
2018-01-14 15:49:49 +00:00
|
|
|
palClearPort(GPIOD, 0xff00); // fets off
|
|
|
|
|
2018-02-11 19:40:52 +00:00
|
|
|
for (uint8_t w = 0; w < 125; w++) {
|
2018-01-14 18:16:26 +00:00
|
|
|
asm ("nop");
|
|
|
|
}
|
2018-02-11 19:40:52 +00:00
|
|
|
|
2018-01-14 15:49:49 +00:00
|
|
|
palSetPad(GPIOE, GPIOE_PIN1); // latch high
|
2018-02-11 19:40:52 +00:00
|
|
|
for (uint8_t w = 0; w < 60; w++) {
|
2018-01-14 18:16:26 +00:00
|
|
|
asm ("nop");
|
|
|
|
}
|
2018-01-14 15:49:49 +00:00
|
|
|
palClearPad(GPIOE, GPIOE_PIN1); // latch low
|
2018-01-14 02:30:07 +00:00
|
|
|
|
|
|
|
|
2018-02-11 19:40:52 +00:00
|
|
|
for (uint8_t w = 0; w < 26; w++) {
|
2018-01-14 18:16:26 +00:00
|
|
|
asm ("nop");
|
|
|
|
}
|
2018-01-14 02:30:07 +00:00
|
|
|
|
|
|
|
// switch fets
|
|
|
|
//palSetPort(GPIOD, (1 << (fet+8)));
|
|
|
|
palWritePad(GPIOD, GPIOD_PIN8, (fet == 0) ? 1 : 0);
|
|
|
|
palWritePad(GPIOD, GPIOD_PIN9, (fet == 1) ? 1 : 0);
|
|
|
|
palWritePad(GPIOD, GPIOD_PIN10, (fet == 2) ? 1 : 0);
|
|
|
|
palWritePad(GPIOD, GPIOD_PIN11, (fet == 3) ? 1 : 0);
|
|
|
|
palWritePad(GPIOD, GPIOD_PIN12, (fet == 4) ? 1 : 0);
|
|
|
|
palWritePad(GPIOD, GPIOD_PIN13, (fet == 5) ? 1 : 0);
|
|
|
|
palWritePad(GPIOD, GPIOD_PIN14, (fet == 6) ? 1 : 0);
|
|
|
|
palWritePad(GPIOD, GPIOD_PIN15, (fet == 7) ? 1 : 0);
|
|
|
|
|
|
|
|
|
2018-02-11 19:40:52 +00:00
|
|
|
chVTSetI(&mosfet_timer, US2ST(1570), refreshDisplay, NULL);
|
2018-01-14 02:30:07 +00:00
|
|
|
chSysUnlockFromISR();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void init_hw() {
|
|
|
|
|
|
|
|
initializeSRData();
|
|
|
|
|
2018-02-11 19:40:52 +00:00
|
|
|
palSetGroupMode(GPIOD, 0xff00, 0, PAL_MODE_OUTPUT_PUSHPULL | PAL_STM32_OSPEED_LOWEST);
|
|
|
|
palSetGroupMode(GPIOE, 0x00ff, 0, PAL_MODE_OUTPUT_PUSHPULL | PAL_STM32_OSPEED_LOWEST);
|
2018-01-14 18:16:26 +00:00
|
|
|
|
|
|
|
|
2018-01-14 02:30:07 +00:00
|
|
|
/*
|
|
|
|
// enable clock
|
|
|
|
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOD | RCC_AHB1Periph_GPIOE, ENABLE);
|
|
|
|
|
|
|
|
GPIO_InitTypeDef GPIO_InitStructure;
|
|
|
|
|
|
|
|
GPIO_InitStructure.GPIO_Pin = GPIOD_PIN8 | GPIOD_PIN9 | GPIOD_PIN10 |
|
|
|
|
GPIOD_PIN11 | GPIOD_PIN12 | GPIOD_PIN13 | GPIOD_PIN14 | GPIOD_PIN15;
|
|
|
|
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
|
|
|
|
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
|
|
|
|
GPIO_Init(GPIOD, &GPIO_InitStructure);
|
|
|
|
|
|
|
|
|
|
|
|
GPIO_InitStructure.GPIO_Pin = GPIOE_PIN0 | GPIOE_PIN1 | GPIOE_PIN2 |
|
|
|
|
GPIOE_PIN3 | GPIOE_PIN4 | GPIOE_PIN5 | GPIOE_PIN6 | GPIOE_PIN7;
|
|
|
|
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
|
|
|
|
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
|
|
|
|
GPIO_Init(GPIOE, &GPIO_InitStructure);
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
}
|