New board: STM8S_DISCOVERY

This commit is contained in:
NIIBE Yutaka
2010-11-26 16:27:01 +09:00
parent d369d176cb
commit 2aafb451b4
6 changed files with 273 additions and 1 deletions

View File

@@ -0,0 +1,33 @@
#include "config.h"
#include "ch.h"
#include "hal.h"
#include "../common/hwinit.c"
void
hwinit0 (void)
{
hwinit0_common ();
}
void
hwinit1 (void)
{
hwinit1_common ();
}
void
USB_Cable_Config (FunctionalState NewState)
{
/* No functionality to stop USB. */
(void)NewState;
}
void
set_led (int value)
{
if (value)
palSetPad (IOPORT1, GPIOA_LED);
else
palClearPad (IOPORT1, GPIOA_LED);
}