2011-02-14 17:48:42 +02:00
|
|
|
/*
|
2011-06-09 18:48:44 +03:00
|
|
|
* fw/board.c - Board-specific functions (for boot loader and application)
|
2011-02-14 17:48:42 +02:00
|
|
|
*
|
2013-03-30 00:19:49 +02:00
|
|
|
* Written 2011, 2013 by Werner Almesberger
|
|
|
|
* Copyright 2011, 2013 Werner Almesberger
|
2011-02-14 17:48:42 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2013-03-30 00:19:49 +02:00
|
|
|
#include <stdbool.h>
|
2011-02-14 17:48:42 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include <avr/io.h>
|
|
|
|
#include <avr/interrupt.h>
|
2011-05-10 23:23:08 +03:00
|
|
|
#include <avr/boot.h>
|
2011-02-14 17:48:42 +02:00
|
|
|
|
|
|
|
#define F_CPU 8000000UL
|
|
|
|
#include <util/delay.h>
|
|
|
|
|
2011-05-10 23:23:08 +03:00
|
|
|
#include "usb.h"
|
2011-02-14 17:48:42 +02:00
|
|
|
#include "at86rf230.h"
|
|
|
|
#include "board.h"
|
|
|
|
#include "spi.h"
|
|
|
|
|
|
|
|
|
2011-05-10 23:23:08 +03:00
|
|
|
uint8_t board_sernum[42] = { 42, USB_DT_STRING };
|
|
|
|
|
2011-02-14 17:48:42 +02:00
|
|
|
void reset_rf(void)
|
|
|
|
{
|
2011-06-04 15:40:34 +03:00
|
|
|
/* set up all the outputs; default port value is 0 */
|
|
|
|
|
|
|
|
DDRB = 0;
|
|
|
|
DDRC = 0;
|
|
|
|
DDRD = 0;
|
|
|
|
PORTB = 0;
|
|
|
|
PORTC = 0;
|
|
|
|
PORTD = 0;
|
|
|
|
|
|
|
|
OUT(LED);
|
|
|
|
OUT(nRST_RF); /* this also resets the transceiver */
|
|
|
|
OUT(SLP_TR);
|
|
|
|
|
|
|
|
spi_init();
|
|
|
|
|
2011-02-14 17:48:42 +02:00
|
|
|
/* AT86RF231 data sheet, 12.4.13, reset pulse width: 625 ns (min) */
|
|
|
|
|
|
|
|
CLR(nRST_RF);
|
2011-06-10 02:55:33 +03:00
|
|
|
_delay_us(2);
|
2011-02-14 17:48:42 +02:00
|
|
|
SET(nRST_RF);
|
|
|
|
|
|
|
|
/* 12.4.14: SPI access latency after reset: 625 ns (min) */
|
|
|
|
|
2011-06-10 02:55:33 +03:00
|
|
|
_delay_us(2);
|
2011-02-14 17:48:42 +02:00
|
|
|
|
|
|
|
/* we must restore TRX_CTRL_0 after each reset (9.6.4) */
|
|
|
|
|
|
|
|
set_clkm();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-30 00:19:49 +02:00
|
|
|
void led(bool on)
|
2011-02-14 17:48:42 +02:00
|
|
|
{
|
|
|
|
if (on)
|
|
|
|
SET(LED);
|
|
|
|
else
|
|
|
|
CLR(LED);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void panic(void)
|
|
|
|
{
|
|
|
|
cli();
|
|
|
|
while (1) {
|
|
|
|
SET(LED);
|
|
|
|
_delay_ms(100);
|
|
|
|
CLR(LED);
|
|
|
|
_delay_ms(100);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-05-10 23:23:08 +03:00
|
|
|
static char hex(uint8_t nibble)
|
|
|
|
{
|
|
|
|
return nibble < 10 ? '0'+nibble : 'a'+nibble-10;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-03-30 01:03:48 +03:00
|
|
|
void get_sernum(void)
|
2011-05-10 23:23:08 +03:00
|
|
|
{
|
|
|
|
uint8_t sig;
|
2013-03-30 00:19:49 +02:00
|
|
|
uint8_t i;
|
2011-05-10 23:23:08 +03:00
|
|
|
|
|
|
|
for (i = 0; i != 10; i++) {
|
|
|
|
sig = boot_signature_byte_get(i+0xe);
|
|
|
|
board_sernum[(i << 2)+2] = hex(sig >> 4);
|
|
|
|
board_sernum[(i << 2)+4] = hex(sig & 0xf);
|
|
|
|
}
|
|
|
|
}
|