##// END OF EJS Templates
Added cpuid getter...
Added cpuid getter Refactored gpio API, and updated for better consistency with other APIs. Started descriptive init.

File last commit:

r104:cfe8b1e0657d dev_alexis
r104:cfe8b1e0657d dev_alexis
Show More
bsp.c
150 lines | 3.2 KiB | text/x-c | CLexer
/*------------------------------------------------------------------------------
-- This file is a part of the libuc, microcontroler library
-- Copyright (C) 2011, Alexis Jeandet
--
-- 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 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program; if not, write to the Free Software
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-------------------------------------------------------------------------------
-- Author : Alexis Jeandet
-- Mail : alexis.jeandet@member.fsf.org
-------------------------------------------------------------------------------*/
#include "bsp.h"
#include <streamdevices.h>
#include <malloc.h>
#include <gpio.h>
#include <uart.h>
#include <stdio.h>
#include "../../common/bsp_gpio.h"
uint32_t OSC0 =8000000;
uint32_t INTOSC =16000000;
uint32_t RTCOSC =32768;
uint32_t currentCpuFreq=0;
extern streamdevice* __opnfiles__[__MAX_OPENED_FILES__];
gpio_t TickLed = LED1;
float VREF0 =(float)3.3;
gpioinitlist_str gpios[]={
{LED1,{gpiooutdir,gpiohighspeed,0,0}},
{LED2,{gpiooutdir,gpiohighspeed,0,0}},
{BP0,{gpioindir,gpiohighspeed,0,0}}};
int bsp_init()
{
int i=0;
for(i=0;i<32;i++)
{
__opnfiles__[i] = NULL;
}
bsp_GPIO_init();
bsp_uart_init();
printf("\r================================================================\n\r");
printf("================================================================\n\r");
printf(BSP);
printf(" initialised\n\r");
printf("================================================================\n\r");
return 1;
}
void bsp_GPIO_init()
{
bsp_gpio_init_list(gpios);
}
void bsp_uart_init()
{
if(__opnfiles__[1]==NULL)
{
streamdevice* fd1 = (streamdevice*)malloc(sizeof(streamdevice));
uart_t uart = uartopenandconfig(uart1,uartparitynone | uart8bits | uartonestop,115200,PA9,PA10,-1,-1);
uartmkstreamdev(uart,fd1);
__opnfiles__[1] = fd1; //stdo
__opnfiles__[0] = fd1; //stdi
}
else
{
uartopenandconfig(uart1,uartparitynone | uart8bits | uartonestop,115200,PA9,PA10,-1,-1);
}
}
void bsp_spi_init()
{
}
void bsp_iic_init()
{
}
void bsp_SD_init()
{
}
/*
* IM0=0
* IM1=1
* IM2=1
* IM3=0
* 4-wire 8-bit data serial interface I
*/
void bsp_LCD_init()
{
}
void vs10XXclearXCS(){}
void vs10XXsetXCS(){}
int vs10XXDREQ()
{
return 1;
}
void bsppowersdcard(char onoff) //always ON
{
}
char bspsdcardpresent()
{
return 0;
}
char bspsdcardwriteprotected()
{
return 0;
}
void bspsdcardselect(char YESNO)
{
}
void bsp_lcd0_write_reg(uint32_t reg,uint32_t data)
{
}
uint32_t bsp_lcd0_read_reg(uint32_t reg)
{
uint16_t value;
return value;
}