2010-08-20 05:14:55 +03:00
|
|
|
/*
|
|
|
|
* common/config.h - Configuration data for boot loader and application
|
|
|
|
*
|
|
|
|
* Written 2010 by Werner Almesberger
|
|
|
|
* Copyright 2010 Werner Almesberger
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2010-08-19 07:05:04 +03:00
|
|
|
#ifndef CONFIG_H
|
|
|
|
#define CONFIG_H
|
|
|
|
|
2010-08-20 05:14:55 +03:00
|
|
|
#include "io.h"
|
|
|
|
#include "io-parts.h"
|
2010-11-11 13:26:01 +02:00
|
|
|
#include "atusb/usb-ids.h"
|
2010-08-19 07:05:04 +03:00
|
|
|
|
2010-08-20 05:14:55 +03:00
|
|
|
|
|
|
|
/* ----- Boot loader configuration ----------------------------------------- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make LED output push-pull so that we can output a high voltage.
|
|
|
|
* This turns on the LED, to indicate that we're in the boot loader.
|
|
|
|
*/
|
|
|
|
|
2010-08-25 10:35:18 +03:00
|
|
|
#define PLATFORM_ENTER \
|
2010-08-20 05:14:55 +03:00
|
|
|
LED_MODE |= 1 << LED_BIT;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Turn off the LED when we exit the boot loader.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define PLATFORM_EXIT \
|
|
|
|
LED = 0
|
|
|
|
|
|
|
|
|
|
|
|
/* ----- Application configuration ----------------------------------------- */
|
|
|
|
|
2010-12-18 04:01:31 +02:00
|
|
|
#if defined(BOARD_1008xx)
|
2010-08-20 03:57:59 +03:00
|
|
|
#define HW_TYPE HW_TYPE_100813
|
2010-12-18 04:01:31 +02:00
|
|
|
#elif defined(BOARD_1012xx)
|
|
|
|
#define HW_TYPE HW_TYPE_101216
|
|
|
|
#else
|
|
|
|
#error must define BOARD_1008xx or BOARD_1012xx
|
|
|
|
#endif
|
2010-08-20 03:57:59 +03:00
|
|
|
|
2010-08-19 07:05:04 +03:00
|
|
|
#endif /* !CONFIG_H */
|