git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1398 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
bdb7f4ab20
commit
31f54b9373
|
@ -51,7 +51,7 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <ch.h>
|
#include "ch.h"
|
||||||
|
|
||||||
#include "lwip/opt.h"
|
#include "lwip/opt.h"
|
||||||
#include "lwip/mem.h"
|
#include "lwip/mem.h"
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <ch.h>
|
#include "ch.h"
|
||||||
|
|
||||||
#include "lwip/opt.h"
|
#include "lwip/opt.h"
|
||||||
#include "lwip/arch.h"
|
#include "lwip/arch.h"
|
||||||
|
|
|
@ -17,11 +17,8 @@
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <ch.h>
|
#include "ch.h"
|
||||||
|
#include "hal.h"
|
||||||
#include <avr/io.h>
|
|
||||||
|
|
||||||
#include "board.h"
|
|
||||||
#include "lcd.h"
|
#include "lcd.h"
|
||||||
|
|
||||||
static void e_pulse(void) {
|
static void e_pulse(void) {
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <ch.h>
|
#include "ch.h"
|
||||||
|
|
||||||
static struct itimerval tempo;
|
static struct itimerval tempo;
|
||||||
static bool_t pending = FALSE;
|
static bool_t pending = FALSE;
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include <ch.h>
|
#include "ch.h"
|
||||||
|
|
||||||
static WORKING_AREA(waThread1, 2048);
|
static WORKING_AREA(waThread1, 2048);
|
||||||
static msg_t Thread1(void *arg) {
|
static msg_t Thread1(void *arg) {
|
||||||
|
|
|
@ -27,8 +27,8 @@
|
||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <ch.h>
|
#include "ch.h"
|
||||||
#include <serial.h>
|
#include "hal.h"
|
||||||
|
|
||||||
static LARGE_INTEGER nextcnt;
|
static LARGE_INTEGER nextcnt;
|
||||||
static LARGE_INTEGER slice;
|
static LARGE_INTEGER slice;
|
||||||
|
|
|
@ -20,8 +20,8 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include <ch.h>
|
#include "ch.h"
|
||||||
#include <serial.h>
|
#include "hal.h"
|
||||||
|
|
||||||
static uint32_t wdguard;
|
static uint32_t wdguard;
|
||||||
static WORKING_AREA(wdarea, 2048);
|
static WORKING_AREA(wdarea, 2048);
|
||||||
|
|
|
@ -27,8 +27,8 @@
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include <ch.h>
|
#include "ch.h"
|
||||||
#include <serial.h>
|
#include "hal.h"
|
||||||
|
|
||||||
/** @brief Serial driver 1 identifier.*/
|
/** @brief Serial driver 1 identifier.*/
|
||||||
#if USE_WIN32_SERIAL1 || defined(__DOXYGEN__)
|
#if USE_WIN32_SERIAL1 || defined(__DOXYGEN__)
|
||||||
|
|
Loading…
Reference in New Issue