Back ported STM32 MAC driver and lwIP demos.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.4.x@4163 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
7683accd34
commit
6a6aa99a6f
|
@ -53,6 +53,7 @@
|
||||||
* Ethernet PHY type.
|
* Ethernet PHY type.
|
||||||
*/
|
*/
|
||||||
#define BOARD_PHY_ID MII_STE101P_ID
|
#define BOARD_PHY_ID MII_STE101P_ID
|
||||||
|
#define BOARD_PHY_RMII
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* IO pins assignments.
|
* IO pins assignments.
|
||||||
|
|
|
@ -0,0 +1,65 @@
|
||||||
|
/*
|
||||||
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
||||||
|
2011,2012 Giovanni Di Sirio.
|
||||||
|
|
||||||
|
This file is part of ChibiOS/RT.
|
||||||
|
|
||||||
|
ChibiOS/RT 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.
|
||||||
|
|
||||||
|
ChibiOS/RT 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
A special exception to the GPL can be applied should you wish to distribute
|
||||||
|
a combined work that includes ChibiOS/RT, without being obliged to provide
|
||||||
|
the source code for any proprietary components. See the file exception.txt
|
||||||
|
for full details of how and when the exception can be applied.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "ch.h"
|
||||||
|
#include "hal.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief PAL setup.
|
||||||
|
* @details Digital I/O ports static configuration as defined in @p board.h.
|
||||||
|
* This variable is used by the HAL when initializing the PAL driver.
|
||||||
|
*/
|
||||||
|
#if HAL_USE_PAL || defined(__DOXYGEN__)
|
||||||
|
const PALConfig pal_default_config =
|
||||||
|
{
|
||||||
|
{VAL_GPIOA_MODER, VAL_GPIOA_OTYPER, VAL_GPIOA_OSPEEDR, VAL_GPIOA_PUPDR, VAL_GPIOA_ODR, VAL_GPIOA_AFRL, VAL_GPIOA_AFRH},
|
||||||
|
{VAL_GPIOB_MODER, VAL_GPIOB_OTYPER, VAL_GPIOB_OSPEEDR, VAL_GPIOB_PUPDR, VAL_GPIOB_ODR, VAL_GPIOB_AFRL, VAL_GPIOB_AFRH},
|
||||||
|
{VAL_GPIOC_MODER, VAL_GPIOC_OTYPER, VAL_GPIOC_OSPEEDR, VAL_GPIOC_PUPDR, VAL_GPIOC_ODR, VAL_GPIOC_AFRL, VAL_GPIOC_AFRH},
|
||||||
|
{VAL_GPIOD_MODER, VAL_GPIOD_OTYPER, VAL_GPIOD_OSPEEDR, VAL_GPIOD_PUPDR, VAL_GPIOD_ODR, VAL_GPIOD_AFRL, VAL_GPIOD_AFRH},
|
||||||
|
{VAL_GPIOE_MODER, VAL_GPIOE_OTYPER, VAL_GPIOE_OSPEEDR, VAL_GPIOE_PUPDR, VAL_GPIOE_ODR, VAL_GPIOE_AFRL, VAL_GPIOE_AFRH},
|
||||||
|
{VAL_GPIOF_MODER, VAL_GPIOF_OTYPER, VAL_GPIOF_OSPEEDR, VAL_GPIOF_PUPDR, VAL_GPIOF_ODR, VAL_GPIOF_AFRL, VAL_GPIOF_AFRH},
|
||||||
|
{VAL_GPIOG_MODER, VAL_GPIOG_OTYPER, VAL_GPIOG_OSPEEDR, VAL_GPIOG_PUPDR, VAL_GPIOG_ODR, VAL_GPIOG_AFRL, VAL_GPIOG_AFRH},
|
||||||
|
{VAL_GPIOH_MODER, VAL_GPIOH_OTYPER, VAL_GPIOH_OSPEEDR, VAL_GPIOH_PUPDR, VAL_GPIOH_ODR, VAL_GPIOH_AFRL, VAL_GPIOH_AFRH},
|
||||||
|
{VAL_GPIOI_MODER, VAL_GPIOI_OTYPER, VAL_GPIOI_OSPEEDR, VAL_GPIOI_PUPDR, VAL_GPIOI_ODR, VAL_GPIOI_AFRL, VAL_GPIOI_AFRH}
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Early initialization code.
|
||||||
|
* This initialization must be performed just after stack setup and before
|
||||||
|
* any other initialization.
|
||||||
|
*/
|
||||||
|
void __early_init(void) {
|
||||||
|
|
||||||
|
stm32_clock_init();
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Board-specific initialization code.
|
||||||
|
*/
|
||||||
|
void boardInit(void) {
|
||||||
|
}
|
|
@ -0,0 +1,647 @@
|
||||||
|
/*
|
||||||
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
||||||
|
2011,2012 Giovanni Di Sirio.
|
||||||
|
|
||||||
|
This file is part of ChibiOS/RT.
|
||||||
|
|
||||||
|
ChibiOS/RT 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.
|
||||||
|
|
||||||
|
ChibiOS/RT 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
A special exception to the GPL can be applied should you wish to distribute
|
||||||
|
a combined work that includes ChibiOS/RT, without being obliged to provide
|
||||||
|
the source code for any proprietary components. See the file exception.txt
|
||||||
|
for full details of how and when the exception can be applied.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _BOARD_H_
|
||||||
|
#define _BOARD_H_
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Setup for Olimex STM32-P407 board.
|
||||||
|
* NOTE: Part of JTAG signals are used for other functions, this board can be
|
||||||
|
* used using SWD only.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Board identifier.
|
||||||
|
*/
|
||||||
|
#define BOARD_OLIMEX_STM32_P407
|
||||||
|
#define BOARD_NAME "Olimex STM32-P407"
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Ethernet PHY type.
|
||||||
|
*/
|
||||||
|
#define BOARD_PHY_ID MII_KS8721_ID
|
||||||
|
#define BOARD_PHY_RMII
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Board frequencies.
|
||||||
|
* NOTE: The LSE crystal is not fitted by default on the board.
|
||||||
|
*/
|
||||||
|
#define STM32_LSECLK 32768
|
||||||
|
#define STM32_HSECLK 25000000
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Board voltages.
|
||||||
|
* Required for performance limits calculation.
|
||||||
|
*/
|
||||||
|
#define STM32_VDD 330
|
||||||
|
|
||||||
|
/*
|
||||||
|
* MCU type as defined in the ST header file stm32f4xx.h.
|
||||||
|
*/
|
||||||
|
#define STM32F4XX
|
||||||
|
|
||||||
|
/*
|
||||||
|
* IO pins assignments.
|
||||||
|
*/
|
||||||
|
#define GPIOA_BUTTON_WKUP 0
|
||||||
|
#define GPIOA_ETH_RMII_REF_CLK 1
|
||||||
|
#define GPIOA_ETH_RMII_MDIO 2
|
||||||
|
#define GPIOA_ETH_RMII_MDINT 3
|
||||||
|
#define GPIOA_DCMI_HSYNC 4
|
||||||
|
#define GPIOA_LCD_SCK 5
|
||||||
|
#define GPIOA_DCMI_PIXCLK 6
|
||||||
|
#define GPIOA_ETH_RMII_CRS_DV 7
|
||||||
|
#define GPIOA_MCO1 8
|
||||||
|
#define GPIOA_OTG_FS_VBUS 9
|
||||||
|
#define GPIOA_DCMI_D1 10
|
||||||
|
#define GPIOA_OTG_FS_DM 11
|
||||||
|
#define GPIOA_OTG_FS_DP 12
|
||||||
|
#define GPIOA_SWDIO 13
|
||||||
|
#define GPIOA_SWCLK 14
|
||||||
|
#define GPIOA_I2S3_WS 15
|
||||||
|
|
||||||
|
#define GPIOB_LCD_BL 0
|
||||||
|
#define GPIOB_BUZ 1
|
||||||
|
#define GPIOB_CAM_ENB 2
|
||||||
|
#define GPIOB_I2S3_CK 3
|
||||||
|
#define GPIOB_LCD_MISO 4
|
||||||
|
#define GPIOB_I2S3_SD 5
|
||||||
|
#define GPIOB_DCMI_D5 6
|
||||||
|
#define GPIOB_DCMI_VSYNC 7
|
||||||
|
#define GPIOB_CAN1_RX 8
|
||||||
|
#define GPIOB_CAN1_TX 9
|
||||||
|
#define GPIOB_USB_FS_FAULT 10
|
||||||
|
#define GPIOB_ETH_RMII_TX_EN 11
|
||||||
|
#define GPIOB_OTG_HS_ID 12
|
||||||
|
#define GPIOB_OTG_HS_VBUS 13
|
||||||
|
#define GPIOB_OTG_HS_DM 14
|
||||||
|
#define GPIOB_OTG_HS_DP 15
|
||||||
|
|
||||||
|
#define GPIOC_TRIM 0
|
||||||
|
#define GPIOC_ETH_RMII_MDC 1
|
||||||
|
#define GPIOC_USB_FS_VBUSON 2
|
||||||
|
#define GPIOC_LCD_MOSI 3
|
||||||
|
#define GPIOC_ETH_RMII_RXD0 4
|
||||||
|
#define GPIOC_ETH_RMII_RXD1 5
|
||||||
|
#define GPIOC_DCMI_D0_US6_TX 6
|
||||||
|
#define GPIOC_I2S3_MCK 7
|
||||||
|
#define GPIOC_DCMI_D2 8
|
||||||
|
#define GPIOC_DCMI_D3 9
|
||||||
|
#define GPIOC_SPI3_SCK 10
|
||||||
|
#define GPIOC_SPI3_MISO 11
|
||||||
|
#define GPIOC_SPI3_MOSI 12
|
||||||
|
#define GPIOC_SWITCH_TAMPER 13
|
||||||
|
#define GPIOC_OSC32_IN 14
|
||||||
|
#define GPIOC_OSC32_OUT 15
|
||||||
|
|
||||||
|
#define GPIOD_USELESS0 0
|
||||||
|
#define GPIOD_USELESS1 1
|
||||||
|
#define GPIOD_SPI3_CS 2
|
||||||
|
#define GPIOD_LCD_RST 3
|
||||||
|
#define GPIOD_USELESS4 4
|
||||||
|
#define GPIOD_USELESS5 5
|
||||||
|
#define GPIOD_LCD_CS 6
|
||||||
|
#define GPIOD_USELESS7 7
|
||||||
|
#define GPIOD_USART3_TX 8
|
||||||
|
#define GPIOD_USART3_RX 9
|
||||||
|
#define GPIOD_USELESS10 10
|
||||||
|
#define GPIOD_USART3_CTS 11
|
||||||
|
#define GPIOD_USART3_RTS 12
|
||||||
|
#define GPIOD_USB_HS_FAULT 13
|
||||||
|
#define GPIOD_USELESS14 14
|
||||||
|
#define GPIOD_USELESS15 15
|
||||||
|
|
||||||
|
#define GPIOE_0 0
|
||||||
|
#define GPIOE_1 1
|
||||||
|
#define GPIOE_TEMP_ALERT 2
|
||||||
|
#define GPIOE_USB_HS_VBUSON 3
|
||||||
|
#define GPIOE_4 4
|
||||||
|
#define GPIOE_5 5
|
||||||
|
#define GPIOE_6 6
|
||||||
|
#define GPIOE_7 7
|
||||||
|
#define GPIOE_8 8
|
||||||
|
#define GPIOE_9 9
|
||||||
|
#define GPIOE_10 10
|
||||||
|
#define GPIOE_11 11
|
||||||
|
#define GPIOE_12 12
|
||||||
|
#define GPIOE_13 13
|
||||||
|
#define GPIOE_14 14
|
||||||
|
#define GPIOE_15 15
|
||||||
|
|
||||||
|
#define GPIOF_0 0
|
||||||
|
#define GPIOF_1 1
|
||||||
|
#define GPIOF_2 2
|
||||||
|
#define GPIOF_3 3
|
||||||
|
#define GPIOF_4 4
|
||||||
|
#define GPIOF_5 5
|
||||||
|
#define GPIOF_STAT1 6
|
||||||
|
#define GPIOF_STAT2 7
|
||||||
|
#define GPIOF_STAT3 8
|
||||||
|
#define GPIOF_CAM_PWR 9
|
||||||
|
#define GPIOF_10 10
|
||||||
|
#define GPIOF_CAM_RS 11
|
||||||
|
#define GPIOF_12 12
|
||||||
|
#define GPIOF_13 13
|
||||||
|
#define GPIOF_14 14
|
||||||
|
#define GPIOF_15 15
|
||||||
|
|
||||||
|
#define GPIOG_0 0
|
||||||
|
#define GPIOG_1 1
|
||||||
|
#define GPIOG_2 2
|
||||||
|
#define GPIOG_3 3
|
||||||
|
#define GPIOG_4 4
|
||||||
|
#define GPIOG_5 5
|
||||||
|
#define GPIOG_RIGHT 6
|
||||||
|
#define GPIOG_UP 7
|
||||||
|
#define GPIOG_DOWN 8
|
||||||
|
#define GPIOG_USART6_RX 9
|
||||||
|
#define GPIOG_10 10
|
||||||
|
#define GPIOG_LEFT 11
|
||||||
|
#define GPIOG_12 12
|
||||||
|
#define GPIOG_ETH_RMII_TXD0 13
|
||||||
|
#define GPIOG_ETH_RMII_TXD1 14
|
||||||
|
#define GPIOG_CENT 15
|
||||||
|
|
||||||
|
#define GPIOH_OSC_IN 0
|
||||||
|
#define GPIOH_OSC_OUT 1
|
||||||
|
|
||||||
|
/*
|
||||||
|
* I/O ports initial setup, this configuration is established soon after reset
|
||||||
|
* in the initialization code.
|
||||||
|
* Please refer to the STM32 Reference Manual for details.
|
||||||
|
*/
|
||||||
|
#define PIN_MODE_INPUT(n) (0U << ((n) * 2))
|
||||||
|
#define PIN_MODE_OUTPUT(n) (1U << ((n) * 2))
|
||||||
|
#define PIN_MODE_ALTERNATE(n) (2U << ((n) * 2))
|
||||||
|
#define PIN_MODE_ANALOG(n) (3U << ((n) * 2))
|
||||||
|
#define PIN_OTYPE_PUSHPULL(n) (0U << (n))
|
||||||
|
#define PIN_OTYPE_OPENDRAIN(n) (1U << (n))
|
||||||
|
#define PIN_OSPEED_2M(n) (0U << ((n) * 2))
|
||||||
|
#define PIN_OSPEED_25M(n) (1U << ((n) * 2))
|
||||||
|
#define PIN_OSPEED_50M(n) (2U << ((n) * 2))
|
||||||
|
#define PIN_OSPEED_100M(n) (3U << ((n) * 2))
|
||||||
|
#define PIN_PUDR_FLOATING(n) (0U << ((n) * 2))
|
||||||
|
#define PIN_PUDR_PULLUP(n) (1U << ((n) * 2))
|
||||||
|
#define PIN_PUDR_PULLDOWN(n) (2U << ((n) * 2))
|
||||||
|
#define PIN_AFIO_AF(n, v) ((v##U) << ((n % 8) * 4))
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Port A setup.
|
||||||
|
*
|
||||||
|
* PA0 - GPIOA_BUTTON_WKUP (input floating).
|
||||||
|
* PA1 - GPIOA_ETH_RMII_REF_CLK(alternate 11).
|
||||||
|
* PA2 - GPIOA_ETH_RMII_MDIO (alternate 11).
|
||||||
|
* PA3 - GPIOA_ETH_RMII_MDINT (input floating).
|
||||||
|
* PA4 - GPIOA_DCMI_HSYNC (input pull-up).
|
||||||
|
* PA5 - GPIOA_LCD_SCK (output push-pull).
|
||||||
|
* PA6 - GPIOA_DCMI_PIXCLK (input pull-up).
|
||||||
|
* PA7 - GPIOA_ETH_RMII_CRS_DV (alternate 11).
|
||||||
|
* PA8 - GPIOA_MCO1 (alternate 0).
|
||||||
|
* PA9 - GPIOA_OTG_FS_VBUS (input pull-up).
|
||||||
|
* PA10 - GPIOA_DCMI_D1 (input pull-up).
|
||||||
|
* PA11 - GPIOA_OTG_FS_DM (alternate 10).
|
||||||
|
* PA12 - GPIOA_OTG_FS_DP (alternate 10).
|
||||||
|
* PA13 - GPIOA_SWDIO (alternate 0).
|
||||||
|
* PA14 - GPIOA_SWCLK (alternate 0, pull-down).
|
||||||
|
* PA15 - GPIOA_I2S3_WS (alternate 6).
|
||||||
|
*/
|
||||||
|
#define VAL_GPIOA_MODER (PIN_MODE_INPUT(GPIOA_BUTTON_WKUP) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOA_ETH_RMII_REF_CLK) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOA_ETH_RMII_MDIO) | \
|
||||||
|
PIN_MODE_INPUT(GPIOA_ETH_RMII_MDINT) | \
|
||||||
|
PIN_MODE_INPUT(GPIOA_DCMI_HSYNC) | \
|
||||||
|
PIN_MODE_OUTPUT(GPIOA_LCD_SCK) | \
|
||||||
|
PIN_MODE_INPUT(GPIOA_DCMI_PIXCLK) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOA_ETH_RMII_CRS_DV) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOA_MCO1) | \
|
||||||
|
PIN_MODE_INPUT(GPIOA_OTG_FS_VBUS) | \
|
||||||
|
PIN_MODE_INPUT(GPIOA_DCMI_D1) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOA_OTG_FS_DM) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOA_OTG_FS_DP) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOA_SWDIO) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOA_SWCLK) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOA_I2S3_WS))
|
||||||
|
#define VAL_GPIOA_OTYPER 0x00000000
|
||||||
|
#define VAL_GPIOA_OSPEEDR 0xFFFFFFFF
|
||||||
|
#define VAL_GPIOA_PUPDR (PIN_PUDR_PULLUP(GPIOA_DCMI_HSYNC) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOA_DCMI_PIXCLK) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOA_OTG_FS_VBUS) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOA_DCMI_D1) | \
|
||||||
|
PIN_PUDR_PULLDOWN(GPIOA_SWCLK))
|
||||||
|
#define VAL_GPIOA_ODR 0xFFFFFFDF
|
||||||
|
#define VAL_GPIOA_AFRL (PIN_AFIO_AF(GPIOA_ETH_RMII_REF_CLK, 11) | \
|
||||||
|
PIN_AFIO_AF(GPIOA_ETH_RMII_MDIO, 11) | \
|
||||||
|
PIN_AFIO_AF(GPIOA_ETH_RMII_CRS_DV, 11))
|
||||||
|
#define VAL_GPIOA_AFRH (PIN_AFIO_AF(GPIOA_MCO1, 0) | \
|
||||||
|
PIN_AFIO_AF(GPIOA_OTG_FS_DM, 10) | \
|
||||||
|
PIN_AFIO_AF(GPIOA_OTG_FS_DP, 10) | \
|
||||||
|
PIN_AFIO_AF(GPIOA_SWDIO, 0) | \
|
||||||
|
PIN_AFIO_AF(GPIOA_SWCLK, 0) | \
|
||||||
|
PIN_AFIO_AF(GPIOA_I2S3_WS, 6))
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Port B setup.
|
||||||
|
*
|
||||||
|
* PB0 - GPIOB_LCD_BL (output push-pull).
|
||||||
|
* PB1 - GPIOB_BUZ (output push-pull).
|
||||||
|
* PB2 - GPIOB_CAM_ENB (input floating).
|
||||||
|
* PB3 - GPIOB_I2S3_CK (alternate 6).
|
||||||
|
* PB4 - GPIOB_LCD_MISO (input floating).
|
||||||
|
* PB5 - GPIOB_I2S3_SD (alternate 6).
|
||||||
|
* PB6 - GPIOB_DCMI_D5 (input pull-up).
|
||||||
|
* PB7 - GPIOB_DCMI_VSYNC (input pull-up).
|
||||||
|
* PB8 - GPIOB_CAN1_RX (alternate 9).
|
||||||
|
* PB9 - GPIOB_CAN1_TX (alternate 9).
|
||||||
|
* PB10 - GPIOB_USB_FS_FAULT (input floating).
|
||||||
|
* PB11 - GPIOB_ETH_RMII_TX_EN (alternate 11).
|
||||||
|
* PB12 - GPIOB_OTG_HS_ID (alternate 12).
|
||||||
|
* PB13 - GPIOB_OTG_HS_VBUS (input pull-up).
|
||||||
|
* PB14 - GPIOB_OTG_HS_DM (alternate 12).
|
||||||
|
* PB15 - GPIOB_OTG_HS_DP (alternate 12).
|
||||||
|
*/
|
||||||
|
#define VAL_GPIOB_MODER (PIN_MODE_OUTPUT(GPIOB_LCD_BL) | \
|
||||||
|
PIN_MODE_OUTPUT(GPIOB_BUZ) | \
|
||||||
|
PIN_MODE_INPUT(GPIOB_CAM_ENB) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOB_I2S3_CK) | \
|
||||||
|
PIN_MODE_INPUT(GPIOB_LCD_MISO) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOB_I2S3_SD) | \
|
||||||
|
PIN_MODE_INPUT(GPIOB_DCMI_D5) | \
|
||||||
|
PIN_MODE_INPUT(GPIOB_DCMI_VSYNC) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOB_CAN1_RX) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOB_CAN1_TX) | \
|
||||||
|
PIN_MODE_INPUT(GPIOB_USB_FS_FAULT) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOB_ETH_RMII_TX_EN) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOB_OTG_HS_ID) | \
|
||||||
|
PIN_MODE_INPUT(GPIOB_OTG_HS_VBUS) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOB_OTG_HS_DM) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOB_OTG_HS_DP))
|
||||||
|
#define VAL_GPIOB_OTYPER 0x00000000
|
||||||
|
#define VAL_GPIOB_OSPEEDR 0xFFFFFFFF
|
||||||
|
#define VAL_GPIOB_PUPDR (PIN_PUDR_PULLUP(GPIOB_DCMI_D5) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOB_DCMI_VSYNC) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOB_OTG_HS_VBUS))
|
||||||
|
#define VAL_GPIOB_ODR 0xFFFFFFFC
|
||||||
|
#define VAL_GPIOB_AFRL (PIN_AFIO_AF(GPIOB_I2S3_CK, 6) | \
|
||||||
|
PIN_AFIO_AF(GPIOB_I2S3_SD, 6))
|
||||||
|
#define VAL_GPIOB_AFRH (PIN_AFIO_AF(GPIOB_CAN1_RX, 9) | \
|
||||||
|
PIN_AFIO_AF(GPIOB_CAN1_TX, 9) | \
|
||||||
|
PIN_AFIO_AF(GPIOB_ETH_RMII_TX_EN, 11) | \
|
||||||
|
PIN_AFIO_AF(GPIOB_OTG_HS_ID, 12) | \
|
||||||
|
PIN_AFIO_AF(GPIOB_OTG_HS_DM, 12) | \
|
||||||
|
PIN_AFIO_AF(GPIOB_OTG_HS_DP, 12))
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Port C setup.
|
||||||
|
*
|
||||||
|
* PC0 - GPIOC_TRIM (input floating).
|
||||||
|
* PC1 - GPIOC_ETH_RMII_MDC (alternate 11).
|
||||||
|
* PC2 - GPIOC_USB_FS_VBUSON (output push-pull).
|
||||||
|
* PC3 - GPIOC_LCD_MOSI (output push-pull).
|
||||||
|
* PC4 - GPIOC_ETH_RMII_RXD0 (alternate 11).
|
||||||
|
* PC5 - GPIOC_ETH_RMII_RXD1 (alternate 11).
|
||||||
|
* PC6 - GPIOC_DCMI_D0_US6_TX (alternate 8).
|
||||||
|
* PC7 - GPIOC_I2S3_MCK (alternate 6).
|
||||||
|
* PC8 - GPIOC_DCMI_D2 (input pull-up).
|
||||||
|
* PC9 - GPIOC_DCMI_D3 (input pull-up).
|
||||||
|
* PC10 - GPIOC_SPI3_SCK (alternate 6).
|
||||||
|
* PC11 - GPIOC_SPI3_MISO (alternate 6).
|
||||||
|
* PC12 - GPIOC_SPI3_MOSI (alternate 6).
|
||||||
|
* PC13 - GPIOC_SWITCH_TAMPER (input floating).
|
||||||
|
* PC14 - GPIOC_OSC32_IN (input floating).
|
||||||
|
* PC15 - GPIOC_OSC32_OUT (input floating).
|
||||||
|
*/
|
||||||
|
#define VAL_GPIOC_MODER (PIN_MODE_INPUT(GPIOC_TRIM) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOC_ETH_RMII_MDC) | \
|
||||||
|
PIN_MODE_OUTPUT(GPIOC_USB_FS_VBUSON) | \
|
||||||
|
PIN_MODE_OUTPUT(GPIOC_LCD_MOSI) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOC_ETH_RMII_RXD0) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOC_ETH_RMII_RXD1) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOC_DCMI_D0_US6_TX) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOC_I2S3_MCK) | \
|
||||||
|
PIN_MODE_INPUT(GPIOC_DCMI_D2) | \
|
||||||
|
PIN_MODE_INPUT(GPIOC_DCMI_D3) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOC_SPI3_SCK) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOC_SPI3_MISO) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOC_SPI3_MOSI) | \
|
||||||
|
PIN_MODE_INPUT(GPIOC_SWITCH_TAMPER) | \
|
||||||
|
PIN_MODE_INPUT(GPIOC_OSC32_IN) | \
|
||||||
|
PIN_MODE_INPUT(GPIOC_OSC32_OUT))
|
||||||
|
#define VAL_GPIOC_OTYPER 0x00000000
|
||||||
|
#define VAL_GPIOC_OSPEEDR 0xFFFFFFFF
|
||||||
|
#define VAL_GPIOC_PUPDR (PIN_PUDR_PULLUP(GPIOC_DCMI_D2) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOC_DCMI_D3))
|
||||||
|
#define VAL_GPIOC_ODR 0xFFFFFFF3
|
||||||
|
#define VAL_GPIOC_AFRL (PIN_AFIO_AF(GPIOC_ETH_RMII_MDC, 11) | \
|
||||||
|
PIN_AFIO_AF(GPIOC_ETH_RMII_RXD0, 11) | \
|
||||||
|
PIN_AFIO_AF(GPIOC_ETH_RMII_RXD1, 11) | \
|
||||||
|
PIN_AFIO_AF(GPIOC_DCMI_D0_US6_TX, 8) | \
|
||||||
|
PIN_AFIO_AF(GPIOC_I2S3_MCK, 6))
|
||||||
|
#define VAL_GPIOC_AFRH (PIN_AFIO_AF(GPIOC_SPI3_SCK, 6) | \
|
||||||
|
PIN_AFIO_AF(GPIOC_SPI3_MISO, 6) | \
|
||||||
|
PIN_AFIO_AF(GPIOC_SPI3_MOSI, 6))
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Port D setup.
|
||||||
|
*
|
||||||
|
* PD0 - GPIOD_USELESS0 (input pull-up).
|
||||||
|
* PD1 - GPIOD_USELESS1 (input pull-up).
|
||||||
|
* PD2 - GPIOD_SPI3_CS (output push-pull).
|
||||||
|
* PD3 - GPIOD_LCD_RST (output push-pull).
|
||||||
|
* PD4 - GPIOD_USELESS4 (input pull-up).
|
||||||
|
* PD5 - GPIOD_USELESS5 (input pull-up).
|
||||||
|
* PD6 - GPIOD_LCD_CS (output push-pull).
|
||||||
|
* PD7 - GPIOD_USELESS7 (input pull-up).
|
||||||
|
* PD8 - GPIOD_USART3_TX (alternate 8).
|
||||||
|
* PD9 - GPIOD_USART3_RX (alternate 8).
|
||||||
|
* PD10 - GPIOD_USELESS10 (input pull-up).
|
||||||
|
* PD11 - GPIOD_USART3_CTS (alternate 8).
|
||||||
|
* PD12 - GPIOD_USART3_RTS (alternate 8).
|
||||||
|
* PD13 - GPIOD_USB_HS_FAULT (input floating).
|
||||||
|
* PD14 - GPIOD_USELESS14 (input pull-up).
|
||||||
|
* PD15 - GPIOD_USELESS15 (input pull-up).
|
||||||
|
*/
|
||||||
|
#define VAL_GPIOD_MODER (PIN_MODE_INPUT(GPIOD_USELESS0) | \
|
||||||
|
PIN_MODE_INPUT(GPIOD_USELESS1) | \
|
||||||
|
PIN_MODE_OUTPUT(GPIOD_SPI3_CS) | \
|
||||||
|
PIN_MODE_OUTPUT(GPIOD_LCD_RST) | \
|
||||||
|
PIN_MODE_INPUT(GPIOD_USELESS4) | \
|
||||||
|
PIN_MODE_INPUT(GPIOD_USELESS5) | \
|
||||||
|
PIN_MODE_OUTPUT(GPIOD_LCD_CS) | \
|
||||||
|
PIN_MODE_INPUT(GPIOD_USELESS7) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOD_USART3_TX) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOD_USART3_RX) | \
|
||||||
|
PIN_MODE_INPUT(GPIOD_USELESS10) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOD_USART3_CTS) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOD_USART3_RTS) | \
|
||||||
|
PIN_MODE_INPUT(GPIOD_USB_HS_FAULT) | \
|
||||||
|
PIN_MODE_INPUT(GPIOD_USELESS14) | \
|
||||||
|
PIN_MODE_INPUT(GPIOD_USELESS15))
|
||||||
|
#define VAL_GPIOD_OTYPER 0x00000000
|
||||||
|
#define VAL_GPIOD_OSPEEDR 0xFFFFFFFF
|
||||||
|
#define VAL_GPIOD_PUPDR (PIN_PUDR_PULLUP(GPIOD_USELESS0) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOD_USELESS1) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOD_USELESS4) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOD_USELESS5) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOD_USELESS7) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOD_USELESS10) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOD_USELESS14) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOD_USELESS15))
|
||||||
|
#define VAL_GPIOD_ODR 0xFFFFFFFF
|
||||||
|
#define VAL_GPIOD_AFRL 0x00000000
|
||||||
|
#define VAL_GPIOD_AFRH (PIN_AFIO_AF(GPIOD_USART3_TX, 7) | \
|
||||||
|
PIN_AFIO_AF(GPIOD_USART3_RX, 7) | \
|
||||||
|
PIN_AFIO_AF(GPIOD_USART3_CTS, 7) | \
|
||||||
|
PIN_AFIO_AF(GPIOD_USART3_RTS, 7))
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Port E setup.
|
||||||
|
*
|
||||||
|
* PE0 - GPIOE_0 (input pull-up).
|
||||||
|
* PE1 - GPIOE_1 (input pull-up).
|
||||||
|
* PE2 - GPIOE_TEMP_ALERT (input floating).
|
||||||
|
* PE3 - GPIOE_USB_HS_VBUSON (output push-pull).
|
||||||
|
* PE4 - GPIOE_4 (input pull-up).
|
||||||
|
* PE5 - GPIOE_5 (input pull-up).
|
||||||
|
* PE6 - GPIOE_6 (input pull-up).
|
||||||
|
* PE7 - GPIOE_7 (input pull-up).
|
||||||
|
* PE8 - GPIOE_8 (input pull-up).
|
||||||
|
* PE9 - GPIOE_9 (input pull-up).
|
||||||
|
* PE10 - GPIOE_10 (input pull-up).
|
||||||
|
* PE11 - GPIOE_11 (input pull-up).
|
||||||
|
* PE12 - GPIOE_12 (input pull-up).
|
||||||
|
* PE13 - GPIOE_13 (input pull-up).
|
||||||
|
* PE14 - GPIOE_14 (input pull-up).
|
||||||
|
* PE15 - GPIOE_15 (input pull-up).
|
||||||
|
*/
|
||||||
|
#define VAL_GPIOE_MODER (PIN_MODE_INPUT(GPIOE_0) | \
|
||||||
|
PIN_MODE_INPUT(GPIOE_1) | \
|
||||||
|
PIN_MODE_INPUT(GPIOE_TEMP_ALERT) | \
|
||||||
|
PIN_MODE_OUTPUT(GPIOE_USB_HS_VBUSON) | \
|
||||||
|
PIN_MODE_INPUT(GPIOE_4) | \
|
||||||
|
PIN_MODE_INPUT(GPIOE_5) | \
|
||||||
|
PIN_MODE_INPUT(GPIOE_6) | \
|
||||||
|
PIN_MODE_INPUT(GPIOE_7) | \
|
||||||
|
PIN_MODE_INPUT(GPIOE_8) | \
|
||||||
|
PIN_MODE_INPUT(GPIOE_9) | \
|
||||||
|
PIN_MODE_INPUT(GPIOE_10) | \
|
||||||
|
PIN_MODE_INPUT(GPIOE_11) | \
|
||||||
|
PIN_MODE_INPUT(GPIOE_12) | \
|
||||||
|
PIN_MODE_INPUT(GPIOE_13) | \
|
||||||
|
PIN_MODE_INPUT(GPIOE_14) | \
|
||||||
|
PIN_MODE_INPUT(GPIOE_15))
|
||||||
|
#define VAL_GPIOE_OTYPER 0x00000000
|
||||||
|
#define VAL_GPIOE_OSPEEDR 0xFFFFFFFF
|
||||||
|
#define VAL_GPIOE_PUPDR (PIN_PUDR_PULLUP(GPIOE_0) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOE_1) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOE_4) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOE_5) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOE_6) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOE_7) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOE_8) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOE_9) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOE_10) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOE_11) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOE_12) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOE_13) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOE_14) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOE_15))
|
||||||
|
#define VAL_GPIOE_ODR 0xFFFFFFF7
|
||||||
|
#define VAL_GPIOE_AFRL 0x00000000
|
||||||
|
#define VAL_GPIOE_AFRH 0x00000000
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Port F setup.
|
||||||
|
*
|
||||||
|
* PF0 - GPIOF_0 (input pull-up).
|
||||||
|
* PF1 - GPIOF_1 (input pull-up).
|
||||||
|
* PF2 - GPIOF_2 (input pull-up).
|
||||||
|
* PF3 - GPIOF_3 (input pull-up).
|
||||||
|
* PF4 - GPIOF_4 (input pull-up).
|
||||||
|
* PF5 - GPIOF_5 (input pull-up).
|
||||||
|
* PF6 - GPIOF_STAT1 (output push-pull).
|
||||||
|
* PF7 - GPIOF_STAT2 (output push-pull).
|
||||||
|
* PF8 - GPIOF_STAT3 (output push-pull).
|
||||||
|
* PF9 - GPIOF_CAM_PWR (output push-pull).
|
||||||
|
* PF10 - GPIOF_10 (input pull-up).
|
||||||
|
* PF11 - GPIOF_CAM_RS (output push-pull).
|
||||||
|
* PF12 - GPIOF_12 (input pull-up).
|
||||||
|
* PF13 - GPIOF_13 (input pull-up).
|
||||||
|
* PF14 - GPIOF_14 (input pull-up).
|
||||||
|
* PF15 - GPIOF_15 (input pull-up).
|
||||||
|
*/
|
||||||
|
#define VAL_GPIOF_MODER (PIN_MODE_INPUT(GPIOF_0) | \
|
||||||
|
PIN_MODE_INPUT(GPIOF_1) | \
|
||||||
|
PIN_MODE_INPUT(GPIOF_2) | \
|
||||||
|
PIN_MODE_INPUT(GPIOF_3) | \
|
||||||
|
PIN_MODE_INPUT(GPIOF_4) | \
|
||||||
|
PIN_MODE_INPUT(GPIOF_5) | \
|
||||||
|
PIN_MODE_OUTPUT(GPIOF_STAT1) | \
|
||||||
|
PIN_MODE_OUTPUT(GPIOF_STAT2) | \
|
||||||
|
PIN_MODE_OUTPUT(GPIOF_STAT3) | \
|
||||||
|
PIN_MODE_OUTPUT(GPIOF_CAM_PWR) | \
|
||||||
|
PIN_MODE_INPUT(GPIOF_10) | \
|
||||||
|
PIN_MODE_OUTPUT(GPIOF_CAM_RS) | \
|
||||||
|
PIN_MODE_INPUT(GPIOF_12) | \
|
||||||
|
PIN_MODE_INPUT(GPIOF_13) | \
|
||||||
|
PIN_MODE_INPUT(GPIOF_14) | \
|
||||||
|
PIN_MODE_INPUT(GPIOF_15))
|
||||||
|
#define VAL_GPIOF_OTYPER 0x00000000
|
||||||
|
#define VAL_GPIOF_OSPEEDR 0xFFFFFFFF
|
||||||
|
#define VAL_GPIOF_PUPDR (PIN_PUDR_PULLUP(GPIOF_0) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOF_1) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOF_2) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOF_3) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOF_4) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOF_5) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOF_10) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOF_12) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOF_13) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOF_14) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOF_15))
|
||||||
|
#define VAL_GPIOF_ODR 0xFFFFFC3F
|
||||||
|
#define VAL_GPIOF_AFRL 0x00000000
|
||||||
|
#define VAL_GPIOF_AFRH 0x00000000
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Port G setup.
|
||||||
|
*
|
||||||
|
* PG0 - GPIOG_0 (input pull-up).
|
||||||
|
* PG1 - GPIOG_1 (input pull-up).
|
||||||
|
* PG2 - GPIOG_2 (input pull-up).
|
||||||
|
* PG3 - GPIOG_3 (input pull-up).
|
||||||
|
* PG4 - GPIOG_4 (input pull-up).
|
||||||
|
* PG5 - GPIOG_5 (input pull-up).
|
||||||
|
* PG6 - GPIOG_RIGHT (input floating).
|
||||||
|
* PG7 - GPIOG_UP (input floating).
|
||||||
|
* PG8 - GPIOG_DOWN (input floating).
|
||||||
|
* PG9 - GPIOG_USART6_RX (alternate 8).
|
||||||
|
* PG10 - GPIOG_10 (input pull-up).
|
||||||
|
* PG11 - GPIOG_LEFT (input floating).
|
||||||
|
* PG12 - GPIOG_12 (input pull-up).
|
||||||
|
* PG13 - GPIOG_ETH_RMII_TXD0 (alternate 11).
|
||||||
|
* PG14 - GPIOG_ETH_RMII_TXD1 (alternate 11).
|
||||||
|
* PG15 - GPIOG_CENT (input pull-up).
|
||||||
|
*/
|
||||||
|
#define VAL_GPIOG_MODER (PIN_MODE_INPUT(GPIOG_0) | \
|
||||||
|
PIN_MODE_INPUT(GPIOG_1) | \
|
||||||
|
PIN_MODE_INPUT(GPIOG_2) | \
|
||||||
|
PIN_MODE_INPUT(GPIOG_3) | \
|
||||||
|
PIN_MODE_INPUT(GPIOG_4) | \
|
||||||
|
PIN_MODE_INPUT(GPIOG_5) | \
|
||||||
|
PIN_MODE_INPUT(GPIOG_RIGHT) | \
|
||||||
|
PIN_MODE_INPUT(GPIOG_UP) | \
|
||||||
|
PIN_MODE_INPUT(GPIOG_DOWN) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOG_USART6_RX) | \
|
||||||
|
PIN_MODE_INPUT(GPIOG_10) | \
|
||||||
|
PIN_MODE_INPUT(GPIOG_LEFT) | \
|
||||||
|
PIN_MODE_INPUT(GPIOG_12) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOG_ETH_RMII_TXD0) | \
|
||||||
|
PIN_MODE_ALTERNATE(GPIOG_ETH_RMII_TXD1) | \
|
||||||
|
PIN_MODE_INPUT(GPIOG_CENT))
|
||||||
|
#define VAL_GPIOG_OTYPER 0x00000000
|
||||||
|
#define VAL_GPIOG_OSPEEDR 0xFFFFFFFF
|
||||||
|
#define VAL_GPIOG_PUPDR (PIN_PUDR_PULLUP(GPIOG_0) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOG_1) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOG_2) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOG_3) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOG_4) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOG_5) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOG_10) | \
|
||||||
|
PIN_PUDR_PULLUP(GPIOG_12))
|
||||||
|
#define VAL_GPIOG_ODR 0xFFFFFFFF
|
||||||
|
#define VAL_GPIOG_AFRL 0x00000000
|
||||||
|
#define VAL_GPIOG_AFRH (PIN_AFIO_AF(GPIOG_USART6_RX, 8) | \
|
||||||
|
PIN_AFIO_AF(GPIOG_ETH_RMII_TXD0, 11) | \
|
||||||
|
PIN_AFIO_AF(GPIOG_ETH_RMII_TXD1, 11))
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Port H setup.
|
||||||
|
* All input with pull-up except:
|
||||||
|
* PH0 - GPIOH_OSC_IN (input floating).
|
||||||
|
* PH1 - GPIOH_OSC_OUT (input floating).
|
||||||
|
*/
|
||||||
|
#define VAL_GPIOH_MODER (PIN_MODE_INPUT(GPIOH_OSC_IN) | \
|
||||||
|
PIN_MODE_INPUT(GPIOH_OSC_OUT) | \
|
||||||
|
PIN_MODE_INPUT(2) | \
|
||||||
|
PIN_MODE_INPUT(3) | \
|
||||||
|
PIN_MODE_INPUT(4) | \
|
||||||
|
PIN_MODE_INPUT(5) | \
|
||||||
|
PIN_MODE_INPUT(6) | \
|
||||||
|
PIN_MODE_INPUT(7) | \
|
||||||
|
PIN_MODE_INPUT(8) | \
|
||||||
|
PIN_MODE_INPUT(9) | \
|
||||||
|
PIN_MODE_INPUT(10) | \
|
||||||
|
PIN_MODE_INPUT(11) | \
|
||||||
|
PIN_MODE_INPUT(12) | \
|
||||||
|
PIN_MODE_INPUT(13) | \
|
||||||
|
PIN_MODE_INPUT(14) | \
|
||||||
|
PIN_MODE_INPUT(15))
|
||||||
|
#define VAL_GPIOH_OTYPER 0x00000000
|
||||||
|
#define VAL_GPIOH_OSPEEDR 0xFFFFFFFF
|
||||||
|
#define VAL_GPIOH_PUPDR (PIN_PUDR_FLOATING(GPIOH_OSC_IN) | \
|
||||||
|
PIN_PUDR_FLOATING(GPIOH_OSC_OUT) | \
|
||||||
|
PIN_PUDR_PULLUP(2) | \
|
||||||
|
PIN_PUDR_PULLUP(3) | \
|
||||||
|
PIN_PUDR_PULLUP(4) | \
|
||||||
|
PIN_PUDR_PULLUP(5) | \
|
||||||
|
PIN_PUDR_PULLUP(6) | \
|
||||||
|
PIN_PUDR_PULLUP(7) | \
|
||||||
|
PIN_PUDR_PULLUP(8) | \
|
||||||
|
PIN_PUDR_PULLUP(9) | \
|
||||||
|
PIN_PUDR_PULLUP(10) | \
|
||||||
|
PIN_PUDR_PULLUP(11) | \
|
||||||
|
PIN_PUDR_PULLUP(12) | \
|
||||||
|
PIN_PUDR_PULLUP(13) | \
|
||||||
|
PIN_PUDR_PULLUP(14) | \
|
||||||
|
PIN_PUDR_PULLUP(15))
|
||||||
|
#define VAL_GPIOH_ODR 0xFFFFFFFF
|
||||||
|
#define VAL_GPIOH_AFRL 0x00000000
|
||||||
|
#define VAL_GPIOH_AFRH 0x00000000
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Port I setup.
|
||||||
|
* All input with pull-up.
|
||||||
|
*/
|
||||||
|
#define VAL_GPIOI_MODER 0x00000000
|
||||||
|
#define VAL_GPIOI_OTYPER 0x00000000
|
||||||
|
#define VAL_GPIOI_OSPEEDR 0xFFFFFFFF
|
||||||
|
#define VAL_GPIOI_PUPDR 0xFFFFFFFF
|
||||||
|
#define VAL_GPIOI_ODR 0xFFFFFFFF
|
||||||
|
#define VAL_GPIOI_AFRL 0x00000000
|
||||||
|
#define VAL_GPIOI_AFRH 0x00000000
|
||||||
|
|
||||||
|
#if !defined(_FROM_ASM_)
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
void boardInit(void);
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
#endif /* _FROM_ASM_ */
|
||||||
|
|
||||||
|
#endif /* _BOARD_H_ */
|
|
@ -0,0 +1,5 @@
|
||||||
|
# List of all the board related files.
|
||||||
|
BOARDSRC = ${CHIBIOS}/boards/OLIMEX_STM32_P407/board.c
|
||||||
|
|
||||||
|
# Required include directories
|
||||||
|
BOARDINC = ${CHIBIOS}/boards/OLIMEX_STM32_P407
|
|
@ -0,0 +1,210 @@
|
||||||
|
##############################################################################
|
||||||
|
# Build global options
|
||||||
|
# NOTE: Can be overridden externally.
|
||||||
|
#
|
||||||
|
|
||||||
|
# Compiler options here.
|
||||||
|
ifeq ($(USE_OPT),)
|
||||||
|
USE_OPT = -O2 -ggdb -fomit-frame-pointer -falign-functions=16
|
||||||
|
endif
|
||||||
|
|
||||||
|
# C specific options here (added to USE_OPT).
|
||||||
|
ifeq ($(USE_COPT),)
|
||||||
|
USE_COPT =
|
||||||
|
endif
|
||||||
|
|
||||||
|
# C++ specific options here (added to USE_OPT).
|
||||||
|
ifeq ($(USE_CPPOPT),)
|
||||||
|
USE_CPPOPT = -fno-rtti
|
||||||
|
endif
|
||||||
|
|
||||||
|
# Enable this if you want the linker to remove unused code and data
|
||||||
|
ifeq ($(USE_LINK_GC),)
|
||||||
|
USE_LINK_GC = yes
|
||||||
|
endif
|
||||||
|
|
||||||
|
# If enabled, this option allows to compile the application in THUMB mode.
|
||||||
|
ifeq ($(USE_THUMB),)
|
||||||
|
USE_THUMB = yes
|
||||||
|
endif
|
||||||
|
|
||||||
|
# Enable this if you want to see the full log while compiling.
|
||||||
|
ifeq ($(USE_VERBOSE_COMPILE),)
|
||||||
|
USE_VERBOSE_COMPILE = no
|
||||||
|
endif
|
||||||
|
|
||||||
|
#
|
||||||
|
# Build global options
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
# Architecture or project specific options
|
||||||
|
#
|
||||||
|
|
||||||
|
# Enable this if you really want to use the STM FWLib.
|
||||||
|
ifeq ($(USE_FWLIB),)
|
||||||
|
USE_FWLIB = no
|
||||||
|
endif
|
||||||
|
|
||||||
|
#
|
||||||
|
# Architecture or project specific options
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
# Project, sources and paths
|
||||||
|
#
|
||||||
|
|
||||||
|
# Define project name here
|
||||||
|
PROJECT = ch
|
||||||
|
|
||||||
|
# Imported source files and paths
|
||||||
|
CHIBIOS = ../..
|
||||||
|
include $(CHIBIOS)/boards/OLIMEX_STM32_P107/board.mk
|
||||||
|
include $(CHIBIOS)/os/hal/platforms/STM32F1xx/platform.mk
|
||||||
|
include $(CHIBIOS)/os/hal/hal.mk
|
||||||
|
include $(CHIBIOS)/os/ports/GCC/ARMCMx/STM32F1xx/port.mk
|
||||||
|
include $(CHIBIOS)/os/kernel/kernel.mk
|
||||||
|
include $(CHIBIOS)/os/various/lwip_bindings/lwip.mk
|
||||||
|
include $(CHIBIOS)/test/test.mk
|
||||||
|
|
||||||
|
# Define linker script file here
|
||||||
|
LDSCRIPT= $(PORTLD)/STM32F107xC.ld
|
||||||
|
|
||||||
|
# C sources that can be compiled in ARM or THUMB mode depending on the global
|
||||||
|
# setting.
|
||||||
|
CSRC = $(PORTSRC) \
|
||||||
|
$(KERNSRC) \
|
||||||
|
$(TESTSRC) \
|
||||||
|
$(HALSRC) \
|
||||||
|
$(PLATFORMSRC) \
|
||||||
|
$(BOARDSRC) \
|
||||||
|
$(LWSRC) \
|
||||||
|
$(CHIBIOS)/os/various/evtimer.c \
|
||||||
|
web/web.c main.c
|
||||||
|
|
||||||
|
# C++ sources that can be compiled in ARM or THUMB mode depending on the global
|
||||||
|
# setting.
|
||||||
|
CPPSRC =
|
||||||
|
|
||||||
|
# C sources to be compiled in ARM mode regardless of the global setting.
|
||||||
|
# NOTE: Mixing ARM and THUMB mode enables the -mthumb-interwork compiler
|
||||||
|
# option that results in lower performance and larger code size.
|
||||||
|
ACSRC =
|
||||||
|
|
||||||
|
# C++ sources to be compiled in ARM mode regardless of the global setting.
|
||||||
|
# NOTE: Mixing ARM and THUMB mode enables the -mthumb-interwork compiler
|
||||||
|
# option that results in lower performance and larger code size.
|
||||||
|
ACPPSRC =
|
||||||
|
|
||||||
|
# C sources to be compiled in THUMB mode regardless of the global setting.
|
||||||
|
# NOTE: Mixing ARM and THUMB mode enables the -mthumb-interwork compiler
|
||||||
|
# option that results in lower performance and larger code size.
|
||||||
|
TCSRC =
|
||||||
|
|
||||||
|
# C sources to be compiled in THUMB mode regardless of the global setting.
|
||||||
|
# NOTE: Mixing ARM and THUMB mode enables the -mthumb-interwork compiler
|
||||||
|
# option that results in lower performance and larger code size.
|
||||||
|
TCPPSRC =
|
||||||
|
|
||||||
|
# List ASM source files here
|
||||||
|
ASMSRC = $(PORTASM)
|
||||||
|
|
||||||
|
INCDIR = $(PORTINC) $(KERNINC) $(TESTINC) \
|
||||||
|
$(HALINC) $(PLATFORMINC) $(BOARDINC) $(LWINC) \
|
||||||
|
$(CHIBIOS)/os/various
|
||||||
|
|
||||||
|
#
|
||||||
|
# Project, sources and paths
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
# Compiler settings
|
||||||
|
#
|
||||||
|
|
||||||
|
MCU = cortex-m3
|
||||||
|
|
||||||
|
#TRGT = arm-elf-
|
||||||
|
TRGT = arm-none-eabi-
|
||||||
|
CC = $(TRGT)gcc
|
||||||
|
CPPC = $(TRGT)g++
|
||||||
|
# Enable loading with g++ only if you need C++ runtime support.
|
||||||
|
# NOTE: You can use C++ even without C++ support if you are careful. C++
|
||||||
|
# runtime support makes code size explode.
|
||||||
|
LD = $(TRGT)gcc
|
||||||
|
#LD = $(TRGT)g++
|
||||||
|
CP = $(TRGT)objcopy
|
||||||
|
AS = $(TRGT)gcc -x assembler-with-cpp
|
||||||
|
OD = $(TRGT)objdump
|
||||||
|
HEX = $(CP) -O ihex
|
||||||
|
BIN = $(CP) -O binary
|
||||||
|
|
||||||
|
# ARM-specific options here
|
||||||
|
AOPT =
|
||||||
|
|
||||||
|
# THUMB-specific options here
|
||||||
|
TOPT = -mthumb -DTHUMB
|
||||||
|
|
||||||
|
# Define C warning options here
|
||||||
|
CWARN = -Wall -Wextra -Wstrict-prototypes
|
||||||
|
|
||||||
|
# Define C++ warning options here
|
||||||
|
CPPWARN = -Wall -Wextra
|
||||||
|
|
||||||
|
#
|
||||||
|
# Compiler settings
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
# Start of default section
|
||||||
|
#
|
||||||
|
|
||||||
|
# List all default C defines here, like -D_DEBUG=1
|
||||||
|
DDEFS =
|
||||||
|
|
||||||
|
# List all default ASM defines here, like -D_DEBUG=1
|
||||||
|
DADEFS =
|
||||||
|
|
||||||
|
# List all default directories to look for include files here
|
||||||
|
DINCDIR =
|
||||||
|
|
||||||
|
# List the default directory to look for the libraries here
|
||||||
|
DLIBDIR =
|
||||||
|
|
||||||
|
# List all default libraries here
|
||||||
|
DLIBS =
|
||||||
|
|
||||||
|
#
|
||||||
|
# End of default section
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
# Start of user section
|
||||||
|
#
|
||||||
|
|
||||||
|
# List all user C define here, like -D_DEBUG=1
|
||||||
|
UDEFS =
|
||||||
|
|
||||||
|
# Define ASM defines here
|
||||||
|
UADEFS =
|
||||||
|
|
||||||
|
# List all user directories here
|
||||||
|
UINCDIR =
|
||||||
|
|
||||||
|
# List the user directory to look for the libraries here
|
||||||
|
ULIBDIR =
|
||||||
|
|
||||||
|
# List all user libraries here
|
||||||
|
ULIBS =
|
||||||
|
|
||||||
|
#
|
||||||
|
# End of user defines
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
ifeq ($(USE_FWLIB),yes)
|
||||||
|
include $(CHIBIOS)/ext/stm32lib/stm32lib.mk
|
||||||
|
CSRC += $(STM32SRC)
|
||||||
|
INCDIR += $(STM32INC)
|
||||||
|
USE_OPT += -DUSE_STDPERIPH_DRIVER
|
||||||
|
endif
|
||||||
|
|
||||||
|
include $(CHIBIOS)/os/ports/GCC/ARMCMx/rules.mk
|
|
@ -0,0 +1,542 @@
|
||||||
|
/*
|
||||||
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
||||||
|
2011,2012 Giovanni Di Sirio.
|
||||||
|
|
||||||
|
This file is part of ChibiOS/RT.
|
||||||
|
|
||||||
|
ChibiOS/RT 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.
|
||||||
|
|
||||||
|
ChibiOS/RT 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
A special exception to the GPL can be applied should you wish to distribute
|
||||||
|
a combined work that includes ChibiOS/RT, without being obliged to provide
|
||||||
|
the source code for any proprietary components. See the file exception.txt
|
||||||
|
for full details of how and when the exception can be applied.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file templates/chconf.h
|
||||||
|
* @brief Configuration file template.
|
||||||
|
* @details A copy of this file must be placed in each project directory, it
|
||||||
|
* contains the application specific kernel settings.
|
||||||
|
*
|
||||||
|
* @addtogroup config
|
||||||
|
* @details Kernel related settings and hooks.
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _CHCONF_H_
|
||||||
|
#define _CHCONF_H_
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/**
|
||||||
|
* @name Kernel parameters and options
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief System tick frequency.
|
||||||
|
* @details Frequency of the system timer that drives the system ticks. This
|
||||||
|
* setting also defines the system tick time unit.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_FREQUENCY) || defined(__DOXYGEN__)
|
||||||
|
#define CH_FREQUENCY 1000
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Round robin interval.
|
||||||
|
* @details This constant is the number of system ticks allowed for the
|
||||||
|
* threads before preemption occurs. Setting this value to zero
|
||||||
|
* disables the preemption for threads with equal priority and the
|
||||||
|
* round robin becomes cooperative. Note that higher priority
|
||||||
|
* threads can still preempt, the kernel is always preemptive.
|
||||||
|
*
|
||||||
|
* @note Disabling the round robin preemption makes the kernel more compact
|
||||||
|
* and generally faster.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_TIME_QUANTUM) || defined(__DOXYGEN__)
|
||||||
|
#define CH_TIME_QUANTUM 20
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Managed RAM size.
|
||||||
|
* @details Size of the RAM area to be managed by the OS. If set to zero
|
||||||
|
* then the whole available RAM is used. The core memory is made
|
||||||
|
* available to the heap allocator and/or can be used directly through
|
||||||
|
* the simplified core memory allocator.
|
||||||
|
*
|
||||||
|
* @note In order to let the OS manage the whole RAM the linker script must
|
||||||
|
* provide the @p __heap_base__ and @p __heap_end__ symbols.
|
||||||
|
* @note Requires @p CH_USE_MEMCORE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_MEMCORE_SIZE) || defined(__DOXYGEN__)
|
||||||
|
#define CH_MEMCORE_SIZE 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Idle thread automatic spawn suppression.
|
||||||
|
* @details When this option is activated the function @p chSysInit()
|
||||||
|
* does not spawn the idle thread automatically. The application has
|
||||||
|
* then the responsibility to do one of the following:
|
||||||
|
* - Spawn a custom idle thread at priority @p IDLEPRIO.
|
||||||
|
* - Change the main() thread priority to @p IDLEPRIO then enter
|
||||||
|
* an endless loop. In this scenario the @p main() thread acts as
|
||||||
|
* the idle thread.
|
||||||
|
* .
|
||||||
|
* @note Unless an idle thread is spawned the @p main() thread must not
|
||||||
|
* enter a sleep state.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_NO_IDLE_THREAD) || defined(__DOXYGEN__)
|
||||||
|
#define CH_NO_IDLE_THREAD FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/**
|
||||||
|
* @name Performance options
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief OS optimization.
|
||||||
|
* @details If enabled then time efficient rather than space efficient code
|
||||||
|
* is used when two possible implementations exist.
|
||||||
|
*
|
||||||
|
* @note This is not related to the compiler optimization options.
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_OPTIMIZE_SPEED) || defined(__DOXYGEN__)
|
||||||
|
#define CH_OPTIMIZE_SPEED TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/**
|
||||||
|
* @name Subsystem options
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Threads registry APIs.
|
||||||
|
* @details If enabled then the registry APIs are included in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_REGISTRY) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_REGISTRY TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Threads synchronization APIs.
|
||||||
|
* @details If enabled then the @p chThdWait() function is included in
|
||||||
|
* the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_WAITEXIT) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_WAITEXIT TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Semaphores APIs.
|
||||||
|
* @details If enabled then the Semaphores APIs are included in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_SEMAPHORES) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_SEMAPHORES TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Semaphores queuing mode.
|
||||||
|
* @details If enabled then the threads are enqueued on semaphores by
|
||||||
|
* priority rather than in FIFO order.
|
||||||
|
*
|
||||||
|
* @note The default is @p FALSE. Enable this if you have special requirements.
|
||||||
|
* @note Requires @p CH_USE_SEMAPHORES.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_SEMAPHORES_PRIORITY) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_SEMAPHORES_PRIORITY FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Atomic semaphore API.
|
||||||
|
* @details If enabled then the semaphores the @p chSemSignalWait() API
|
||||||
|
* is included in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
* @note Requires @p CH_USE_SEMAPHORES.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_SEMSW) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_SEMSW TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Mutexes APIs.
|
||||||
|
* @details If enabled then the mutexes APIs are included in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_MUTEXES) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_MUTEXES TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Conditional Variables APIs.
|
||||||
|
* @details If enabled then the conditional variables APIs are included
|
||||||
|
* in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
* @note Requires @p CH_USE_MUTEXES.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_CONDVARS) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_CONDVARS TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Conditional Variables APIs with timeout.
|
||||||
|
* @details If enabled then the conditional variables APIs with timeout
|
||||||
|
* specification are included in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
* @note Requires @p CH_USE_CONDVARS.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_CONDVARS_TIMEOUT) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_CONDVARS_TIMEOUT TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Events Flags APIs.
|
||||||
|
* @details If enabled then the event flags APIs are included in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_EVENTS) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_EVENTS TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Events Flags APIs with timeout.
|
||||||
|
* @details If enabled then the events APIs with timeout specification
|
||||||
|
* are included in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
* @note Requires @p CH_USE_EVENTS.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_EVENTS_TIMEOUT) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_EVENTS_TIMEOUT TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Synchronous Messages APIs.
|
||||||
|
* @details If enabled then the synchronous messages APIs are included
|
||||||
|
* in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_MESSAGES) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_MESSAGES TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Synchronous Messages queuing mode.
|
||||||
|
* @details If enabled then messages are served by priority rather than in
|
||||||
|
* FIFO order.
|
||||||
|
*
|
||||||
|
* @note The default is @p FALSE. Enable this if you have special requirements.
|
||||||
|
* @note Requires @p CH_USE_MESSAGES.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_MESSAGES_PRIORITY) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_MESSAGES_PRIORITY FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Mailboxes APIs.
|
||||||
|
* @details If enabled then the asynchronous messages (mailboxes) APIs are
|
||||||
|
* included in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
* @note Requires @p CH_USE_SEMAPHORES.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_MAILBOXES) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_MAILBOXES TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief I/O Queues APIs.
|
||||||
|
* @details If enabled then the I/O queues APIs are included in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_QUEUES) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_QUEUES TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Core Memory Manager APIs.
|
||||||
|
* @details If enabled then the core memory manager APIs are included
|
||||||
|
* in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_MEMCORE) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_MEMCORE TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Heap Allocator APIs.
|
||||||
|
* @details If enabled then the memory heap allocator APIs are included
|
||||||
|
* in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
* @note Requires @p CH_USE_MEMCORE and either @p CH_USE_MUTEXES or
|
||||||
|
* @p CH_USE_SEMAPHORES.
|
||||||
|
* @note Mutexes are recommended.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_HEAP) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_HEAP TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief C-runtime allocator.
|
||||||
|
* @details If enabled the the heap allocator APIs just wrap the C-runtime
|
||||||
|
* @p malloc() and @p free() functions.
|
||||||
|
*
|
||||||
|
* @note The default is @p FALSE.
|
||||||
|
* @note Requires @p CH_USE_HEAP.
|
||||||
|
* @note The C-runtime may or may not require @p CH_USE_MEMCORE, see the
|
||||||
|
* appropriate documentation.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_MALLOC_HEAP) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_MALLOC_HEAP FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Memory Pools Allocator APIs.
|
||||||
|
* @details If enabled then the memory pools allocator APIs are included
|
||||||
|
* in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_MEMPOOLS) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_MEMPOOLS TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Dynamic Threads APIs.
|
||||||
|
* @details If enabled then the dynamic threads creation APIs are included
|
||||||
|
* in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
* @note Requires @p CH_USE_WAITEXIT.
|
||||||
|
* @note Requires @p CH_USE_HEAP and/or @p CH_USE_MEMPOOLS.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_DYNAMIC) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_DYNAMIC TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/**
|
||||||
|
* @name Debug options
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Debug option, system state check.
|
||||||
|
* @details If enabled the correct call protocol for system APIs is checked
|
||||||
|
* at runtime.
|
||||||
|
*
|
||||||
|
* @note The default is @p FALSE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_DBG_SYSTEM_STATE_CHECK) || defined(__DOXYGEN__)
|
||||||
|
#define CH_DBG_SYSTEM_STATE_CHECK FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Debug option, parameters checks.
|
||||||
|
* @details If enabled then the checks on the API functions input
|
||||||
|
* parameters are activated.
|
||||||
|
*
|
||||||
|
* @note The default is @p FALSE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_DBG_ENABLE_CHECKS) || defined(__DOXYGEN__)
|
||||||
|
#define CH_DBG_ENABLE_CHECKS FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Debug option, consistency checks.
|
||||||
|
* @details If enabled then all the assertions in the kernel code are
|
||||||
|
* activated. This includes consistency checks inside the kernel,
|
||||||
|
* runtime anomalies and port-defined checks.
|
||||||
|
*
|
||||||
|
* @note The default is @p FALSE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_DBG_ENABLE_ASSERTS) || defined(__DOXYGEN__)
|
||||||
|
#define CH_DBG_ENABLE_ASSERTS FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Debug option, trace buffer.
|
||||||
|
* @details If enabled then the context switch circular trace buffer is
|
||||||
|
* activated.
|
||||||
|
*
|
||||||
|
* @note The default is @p FALSE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_DBG_ENABLE_TRACE) || defined(__DOXYGEN__)
|
||||||
|
#define CH_DBG_ENABLE_TRACE FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Debug option, stack checks.
|
||||||
|
* @details If enabled then a runtime stack check is performed.
|
||||||
|
*
|
||||||
|
* @note The default is @p FALSE.
|
||||||
|
* @note The stack check is performed in a architecture/port dependent way.
|
||||||
|
* It may not be implemented or some ports.
|
||||||
|
* @note The default failure mode is to halt the system with the global
|
||||||
|
* @p panic_msg variable set to @p NULL.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_DBG_ENABLE_STACK_CHECK) || defined(__DOXYGEN__)
|
||||||
|
#define CH_DBG_ENABLE_STACK_CHECK FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Debug option, stacks initialization.
|
||||||
|
* @details If enabled then the threads working area is filled with a byte
|
||||||
|
* value when a thread is created. This can be useful for the
|
||||||
|
* runtime measurement of the used stack.
|
||||||
|
*
|
||||||
|
* @note The default is @p FALSE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_DBG_FILL_THREADS) || defined(__DOXYGEN__)
|
||||||
|
#define CH_DBG_FILL_THREADS FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Debug option, threads profiling.
|
||||||
|
* @details If enabled then a field is added to the @p Thread structure that
|
||||||
|
* counts the system ticks occurred while executing the thread.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
* @note This debug option is defaulted to TRUE because it is required by
|
||||||
|
* some test cases into the test suite.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_DBG_THREADS_PROFILING) || defined(__DOXYGEN__)
|
||||||
|
#define CH_DBG_THREADS_PROFILING TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/**
|
||||||
|
* @name Kernel hooks
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Threads descriptor structure extension.
|
||||||
|
* @details User fields added to the end of the @p Thread structure.
|
||||||
|
*/
|
||||||
|
#if !defined(THREAD_EXT_FIELDS) || defined(__DOXYGEN__)
|
||||||
|
#define THREAD_EXT_FIELDS \
|
||||||
|
/* Add threads custom fields here.*/
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Threads initialization hook.
|
||||||
|
* @details User initialization code added to the @p chThdInit() API.
|
||||||
|
*
|
||||||
|
* @note It is invoked from within @p chThdInit() and implicitly from all
|
||||||
|
* the threads creation APIs.
|
||||||
|
*/
|
||||||
|
#if !defined(THREAD_EXT_INIT_HOOK) || defined(__DOXYGEN__)
|
||||||
|
#define THREAD_EXT_INIT_HOOK(tp) { \
|
||||||
|
/* Add threads initialization code here.*/ \
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Threads finalization hook.
|
||||||
|
* @details User finalization code added to the @p chThdExit() API.
|
||||||
|
*
|
||||||
|
* @note It is inserted into lock zone.
|
||||||
|
* @note It is also invoked when the threads simply return in order to
|
||||||
|
* terminate.
|
||||||
|
*/
|
||||||
|
#if !defined(THREAD_EXT_EXIT_HOOK) || defined(__DOXYGEN__)
|
||||||
|
#define THREAD_EXT_EXIT_HOOK(tp) { \
|
||||||
|
/* Add threads finalization code here.*/ \
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Context switch hook.
|
||||||
|
* @details This hook is invoked just before switching between threads.
|
||||||
|
*/
|
||||||
|
#if !defined(THREAD_CONTEXT_SWITCH_HOOK) || defined(__DOXYGEN__)
|
||||||
|
#define THREAD_CONTEXT_SWITCH_HOOK(ntp, otp) { \
|
||||||
|
/* System halt code here.*/ \
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Idle Loop hook.
|
||||||
|
* @details This hook is continuously invoked by the idle thread loop.
|
||||||
|
*/
|
||||||
|
#if !defined(IDLE_LOOP_HOOK) || defined(__DOXYGEN__)
|
||||||
|
#define IDLE_LOOP_HOOK() { \
|
||||||
|
/* Idle loop code here.*/ \
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief System tick event hook.
|
||||||
|
* @details This hook is invoked in the system tick handler immediately
|
||||||
|
* after processing the virtual timers queue.
|
||||||
|
*/
|
||||||
|
#if !defined(SYSTEM_TICK_EVENT_HOOK) || defined(__DOXYGEN__)
|
||||||
|
#define SYSTEM_TICK_EVENT_HOOK() { \
|
||||||
|
/* System tick event code here.*/ \
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief System halt hook.
|
||||||
|
* @details This hook is invoked in case to a system halting error before
|
||||||
|
* the system is halted.
|
||||||
|
*/
|
||||||
|
#if !defined(SYSTEM_HALT_HOOK) || defined(__DOXYGEN__)
|
||||||
|
#define SYSTEM_HALT_HOOK() { \
|
||||||
|
/* System halt code here.*/ \
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* Port-specific settings (override port settings defaulted in chcore.h). */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
#endif /* _CHCONF_H_ */
|
||||||
|
|
||||||
|
/** @} */
|
|
@ -0,0 +1,349 @@
|
||||||
|
/*
|
||||||
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
||||||
|
2011,2012 Giovanni Di Sirio.
|
||||||
|
|
||||||
|
This file is part of ChibiOS/RT.
|
||||||
|
|
||||||
|
ChibiOS/RT 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.
|
||||||
|
|
||||||
|
ChibiOS/RT 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
A special exception to the GPL can be applied should you wish to distribute
|
||||||
|
a combined work that includes ChibiOS/RT, without being obliged to provide
|
||||||
|
the source code for any proprietary components. See the file exception.txt
|
||||||
|
for full details of how and when the exception can be applied.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file templates/halconf.h
|
||||||
|
* @brief HAL configuration header.
|
||||||
|
* @details HAL configuration file, this file allows to enable or disable the
|
||||||
|
* various device drivers from your application. You may also use
|
||||||
|
* this file in order to override the device drivers default settings.
|
||||||
|
*
|
||||||
|
* @addtogroup HAL_CONF
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _HALCONF_H_
|
||||||
|
#define _HALCONF_H_
|
||||||
|
|
||||||
|
#include "mcuconf.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the TM subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_TM) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_TM TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the PAL subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_PAL) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_PAL TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the ADC subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_ADC) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_ADC FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the CAN subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_CAN) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_CAN FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the EXT subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_EXT) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_EXT FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the GPT subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_GPT) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_GPT FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the I2C subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_I2C) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_I2C FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the ICU subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_ICU) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_ICU FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the MAC subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_MAC) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_MAC TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the MMC_SPI subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_MMC_SPI) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_MMC_SPI FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the PWM subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_PWM) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_PWM FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the RTC subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_RTC) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_RTC FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the SDC subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_SDC) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_SDC FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the SERIAL subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_SERIAL) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_SERIAL TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the SERIAL over USB subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_SERIAL_USB) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_SERIAL_USB FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the SPI subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_SPI) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_SPI FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the UART subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_UART) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_UART FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the USB subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_USB) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_USB FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* ADC driver related settings. */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables synchronous APIs.
|
||||||
|
* @note Disabling this option saves both code and data space.
|
||||||
|
*/
|
||||||
|
#if !defined(ADC_USE_WAIT) || defined(__DOXYGEN__)
|
||||||
|
#define ADC_USE_WAIT TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the @p adcAcquireBus() and @p adcReleaseBus() APIs.
|
||||||
|
* @note Disabling this option saves both code and data space.
|
||||||
|
*/
|
||||||
|
#if !defined(ADC_USE_MUTUAL_EXCLUSION) || defined(__DOXYGEN__)
|
||||||
|
#define ADC_USE_MUTUAL_EXCLUSION TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* CAN driver related settings. */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Sleep mode related APIs inclusion switch.
|
||||||
|
*/
|
||||||
|
#if !defined(CAN_USE_SLEEP_MODE) || defined(__DOXYGEN__)
|
||||||
|
#define CAN_USE_SLEEP_MODE TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* I2C driver related settings. */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the mutual exclusion APIs on the I2C bus.
|
||||||
|
*/
|
||||||
|
#if !defined(I2C_USE_MUTUAL_EXCLUSION) || defined(__DOXYGEN__)
|
||||||
|
#define I2C_USE_MUTUAL_EXCLUSION TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* MAC driver related settings. */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables an event sources for incoming packets.
|
||||||
|
*/
|
||||||
|
#if !defined(MAC_USE_EVENTS) || defined(__DOXYGEN__)
|
||||||
|
#define MAC_USE_EVENTS TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* MMC_SPI driver related settings. */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Block size for MMC transfers.
|
||||||
|
*/
|
||||||
|
#if !defined(MMC_SECTOR_SIZE) || defined(__DOXYGEN__)
|
||||||
|
#define MMC_SECTOR_SIZE 512
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Delays insertions.
|
||||||
|
* @details If enabled this options inserts delays into the MMC waiting
|
||||||
|
* routines releasing some extra CPU time for the threads with
|
||||||
|
* lower priority, this may slow down the driver a bit however.
|
||||||
|
* This option is recommended also if the SPI driver does not
|
||||||
|
* use a DMA channel and heavily loads the CPU.
|
||||||
|
*/
|
||||||
|
#if !defined(MMC_NICE_WAITING) || defined(__DOXYGEN__)
|
||||||
|
#define MMC_NICE_WAITING TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Number of positive insertion queries before generating the
|
||||||
|
* insertion event.
|
||||||
|
*/
|
||||||
|
#if !defined(MMC_POLLING_INTERVAL) || defined(__DOXYGEN__)
|
||||||
|
#define MMC_POLLING_INTERVAL 10
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Interval, in milliseconds, between insertion queries.
|
||||||
|
*/
|
||||||
|
#if !defined(MMC_POLLING_DELAY) || defined(__DOXYGEN__)
|
||||||
|
#define MMC_POLLING_DELAY 10
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Uses the SPI polled API for small data transfers.
|
||||||
|
* @details Polled transfers usually improve performance because it
|
||||||
|
* saves two context switches and interrupt servicing. Note
|
||||||
|
* that this option has no effect on large transfers which
|
||||||
|
* are always performed using DMAs/IRQs.
|
||||||
|
*/
|
||||||
|
#if !defined(MMC_USE_SPI_POLLING) || defined(__DOXYGEN__)
|
||||||
|
#define MMC_USE_SPI_POLLING TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* SDC driver related settings. */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Number of initialization attempts before rejecting the card.
|
||||||
|
* @note Attempts are performed at 10mS intervals.
|
||||||
|
*/
|
||||||
|
#if !defined(SDC_INIT_RETRY) || defined(__DOXYGEN__)
|
||||||
|
#define SDC_INIT_RETRY 100
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Include support for MMC cards.
|
||||||
|
* @note MMC support is not yet implemented so this option must be kept
|
||||||
|
* at @p FALSE.
|
||||||
|
*/
|
||||||
|
#if !defined(SDC_MMC_SUPPORT) || defined(__DOXYGEN__)
|
||||||
|
#define SDC_MMC_SUPPORT FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Delays insertions.
|
||||||
|
* @details If enabled this options inserts delays into the MMC waiting
|
||||||
|
* routines releasing some extra CPU time for the threads with
|
||||||
|
* lower priority, this may slow down the driver a bit however.
|
||||||
|
*/
|
||||||
|
#if !defined(SDC_NICE_WAITING) || defined(__DOXYGEN__)
|
||||||
|
#define SDC_NICE_WAITING TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* SERIAL driver related settings. */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Default bit rate.
|
||||||
|
* @details Configuration parameter, this is the baud rate selected for the
|
||||||
|
* default configuration.
|
||||||
|
*/
|
||||||
|
#if !defined(SERIAL_DEFAULT_BITRATE) || defined(__DOXYGEN__)
|
||||||
|
#define SERIAL_DEFAULT_BITRATE 38400
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Serial buffers size.
|
||||||
|
* @details Configuration parameter, you can change the depth of the queue
|
||||||
|
* buffers depending on the requirements of your application.
|
||||||
|
* @note The default is 64 bytes for both the transmission and receive
|
||||||
|
* buffers.
|
||||||
|
*/
|
||||||
|
#if !defined(SERIAL_BUFFERS_SIZE) || defined(__DOXYGEN__)
|
||||||
|
#define SERIAL_BUFFERS_SIZE 16
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* SPI driver related settings. */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables synchronous APIs.
|
||||||
|
* @note Disabling this option saves both code and data space.
|
||||||
|
*/
|
||||||
|
#if !defined(SPI_USE_WAIT) || defined(__DOXYGEN__)
|
||||||
|
#define SPI_USE_WAIT TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the @p spiAcquireBus() and @p spiReleaseBus() APIs.
|
||||||
|
* @note Disabling this option saves both code and data space.
|
||||||
|
*/
|
||||||
|
#if !defined(SPI_USE_MUTUAL_EXCLUSION) || defined(__DOXYGEN__)
|
||||||
|
#define SPI_USE_MUTUAL_EXCLUSION TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* _HALCONF_H_ */
|
||||||
|
|
||||||
|
/** @} */
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,98 @@
|
||||||
|
/*
|
||||||
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
||||||
|
2011,2012 Giovanni Di Sirio.
|
||||||
|
|
||||||
|
This file is part of ChibiOS/RT.
|
||||||
|
|
||||||
|
ChibiOS/RT 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.
|
||||||
|
|
||||||
|
ChibiOS/RT 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
A special exception to the GPL can be applied should you wish to distribute
|
||||||
|
a combined work that includes ChibiOS/RT, without being obliged to provide
|
||||||
|
the source code for any proprietary components. See the file exception.txt
|
||||||
|
for full details of how and when the exception can be applied.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "ch.h"
|
||||||
|
#include "hal.h"
|
||||||
|
#include "test.h"
|
||||||
|
|
||||||
|
#include "lwipthread.h"
|
||||||
|
|
||||||
|
#include "web/web.h"
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Green LED blinker thread, times are in milliseconds.
|
||||||
|
*/
|
||||||
|
static WORKING_AREA(waThread1, 128);
|
||||||
|
static msg_t Thread1(void *arg) {
|
||||||
|
|
||||||
|
(void)arg;
|
||||||
|
chRegSetThreadName("blinker");
|
||||||
|
while (TRUE) {
|
||||||
|
palClearPad(GPIOC, GPIOC_LED_STATUS1);
|
||||||
|
chThdSleepMilliseconds(500);
|
||||||
|
palSetPad(GPIOC, GPIOC_LED_STATUS1);
|
||||||
|
chThdSleepMilliseconds(500);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Application entry point.
|
||||||
|
*/
|
||||||
|
int main(void) {
|
||||||
|
|
||||||
|
/*
|
||||||
|
* System initializations.
|
||||||
|
* - HAL initialization, this also initializes the configured device drivers
|
||||||
|
* and performs the board-specific initializations.
|
||||||
|
* - Kernel initialization, the main() function becomes a thread and the
|
||||||
|
* RTOS is active.
|
||||||
|
*/
|
||||||
|
halInit();
|
||||||
|
chSysInit();
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Activates the serial driver 3 using the driver default configuration.
|
||||||
|
*/
|
||||||
|
sdStart(&SD3, NULL);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Creates the blinker thread.
|
||||||
|
*/
|
||||||
|
chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Creates the LWIP threads (it changes priority internally).
|
||||||
|
*/
|
||||||
|
chThdCreateStatic(wa_lwip_thread, LWIP_THREAD_STACK_SIZE, NORMALPRIO + 1,
|
||||||
|
lwip_thread, NULL);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Creates the HTTP thread (it changes priority internally).
|
||||||
|
*/
|
||||||
|
chThdCreateStatic(wa_http_server, sizeof(wa_http_server), NORMALPRIO + 1,
|
||||||
|
http_server, NULL);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Normal main() thread activity, in this demo it does nothing except
|
||||||
|
* sleeping in a loop and check the button state.
|
||||||
|
*/
|
||||||
|
while (TRUE) {
|
||||||
|
if (palReadPad(GPIOC, GPIOC_SWITCH_TAMPER) == 0)
|
||||||
|
TestThread(&SD3);
|
||||||
|
chThdSleepMilliseconds(500);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,218 @@
|
||||||
|
/*
|
||||||
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
||||||
|
2011,2012 Giovanni Di Sirio.
|
||||||
|
|
||||||
|
This file is part of ChibiOS/RT.
|
||||||
|
|
||||||
|
ChibiOS/RT 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.
|
||||||
|
|
||||||
|
ChibiOS/RT 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
A special exception to the GPL can be applied should you wish to distribute
|
||||||
|
a combined work that includes ChibiOS/RT, without being obliged to provide
|
||||||
|
the source code for any proprietary components. See the file exception.txt
|
||||||
|
for full details of how and when the exception can be applied.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* STM32F1xx drivers configuration.
|
||||||
|
* The following settings override the default settings present in
|
||||||
|
* the various device driver implementation headers.
|
||||||
|
* Note that the settings for each driver only have effect if the whole
|
||||||
|
* driver is enabled in halconf.h.
|
||||||
|
*
|
||||||
|
* IRQ priorities:
|
||||||
|
* 15...0 Lowest...Highest.
|
||||||
|
*
|
||||||
|
* DMA priorities:
|
||||||
|
* 0...3 Lowest...Highest.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* HAL driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_NO_INIT FALSE
|
||||||
|
#define STM32_HSI_ENABLED TRUE
|
||||||
|
#define STM32_LSI_ENABLED FALSE
|
||||||
|
#define STM32_HSE_ENABLED TRUE
|
||||||
|
#define STM32_LSE_ENABLED FALSE
|
||||||
|
#define STM32_SW STM32_SW_PLL
|
||||||
|
#define STM32_PLLSRC STM32_PLLSRC_PREDIV1
|
||||||
|
#define STM32_PREDIV1SRC STM32_PREDIV1SRC_PLL2
|
||||||
|
#define STM32_PREDIV1_VALUE 5
|
||||||
|
#define STM32_PLLMUL_VALUE 9
|
||||||
|
#define STM32_PREDIV2_VALUE 5
|
||||||
|
#define STM32_PLL2MUL_VALUE 8
|
||||||
|
#define STM32_PLL3MUL_VALUE 10
|
||||||
|
#define STM32_HPRE STM32_HPRE_DIV1
|
||||||
|
#define STM32_PPRE1 STM32_PPRE1_DIV2
|
||||||
|
#define STM32_PPRE2 STM32_PPRE2_DIV2
|
||||||
|
#define STM32_ADCPRE STM32_ADCPRE_DIV4
|
||||||
|
#define STM32_OTG_CLOCK_REQUIRED TRUE
|
||||||
|
#define STM32_OTGFSPRE STM32_OTGFSPRE_DIV3
|
||||||
|
#define STM32_I2S_CLOCK_REQUIRED FALSE
|
||||||
|
#define STM32_MCOSEL STM32_MCOSEL_PLL3
|
||||||
|
#define STM32_RTCSEL STM32_RTCSEL_HSEDIV
|
||||||
|
#define STM32_PVD_ENABLE FALSE
|
||||||
|
#define STM32_PLS STM32_PLS_LEV0
|
||||||
|
|
||||||
|
/*
|
||||||
|
* ADC driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_ADC_USE_ADC1 TRUE
|
||||||
|
#define STM32_ADC_ADC1_DMA_PRIORITY 2
|
||||||
|
#define STM32_ADC_ADC1_IRQ_PRIORITY 5
|
||||||
|
|
||||||
|
/*
|
||||||
|
* CAN driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_CAN_USE_CAN1 TRUE
|
||||||
|
#define STM32_CAN_CAN1_IRQ_PRIORITY 11
|
||||||
|
|
||||||
|
/*
|
||||||
|
* EXT driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_EXT_EXTI0_IRQ_PRIORITY 6
|
||||||
|
#define STM32_EXT_EXTI1_IRQ_PRIORITY 6
|
||||||
|
#define STM32_EXT_EXTI2_IRQ_PRIORITY 6
|
||||||
|
#define STM32_EXT_EXTI3_IRQ_PRIORITY 6
|
||||||
|
#define STM32_EXT_EXTI4_IRQ_PRIORITY 6
|
||||||
|
#define STM32_EXT_EXTI5_9_IRQ_PRIORITY 6
|
||||||
|
#define STM32_EXT_EXTI10_15_IRQ_PRIORITY 6
|
||||||
|
#define STM32_EXT_EXTI16_IRQ_PRIORITY 6
|
||||||
|
#define STM32_EXT_EXTI17_IRQ_PRIORITY 6
|
||||||
|
#define STM32_EXT_EXTI18_IRQ_PRIORITY 6
|
||||||
|
#define STM32_EXT_EXTI19_IRQ_PRIORITY 6
|
||||||
|
|
||||||
|
/*
|
||||||
|
* GPT driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_GPT_USE_TIM1 FALSE
|
||||||
|
#define STM32_GPT_USE_TIM2 FALSE
|
||||||
|
#define STM32_GPT_USE_TIM3 FALSE
|
||||||
|
#define STM32_GPT_USE_TIM4 FALSE
|
||||||
|
#define STM32_GPT_USE_TIM5 FALSE
|
||||||
|
#define STM32_GPT_USE_TIM8 FALSE
|
||||||
|
#define STM32_GPT_TIM1_IRQ_PRIORITY 7
|
||||||
|
#define STM32_GPT_TIM2_IRQ_PRIORITY 7
|
||||||
|
#define STM32_GPT_TIM3_IRQ_PRIORITY 7
|
||||||
|
#define STM32_GPT_TIM4_IRQ_PRIORITY 7
|
||||||
|
#define STM32_GPT_TIM5_IRQ_PRIORITY 7
|
||||||
|
#define STM32_GPT_TIM8_IRQ_PRIORITY 7
|
||||||
|
|
||||||
|
/*
|
||||||
|
* I2C driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_I2C_USE_I2C1 FALSE
|
||||||
|
#define STM32_I2C_USE_I2C2 FALSE
|
||||||
|
#define STM32_I2C_USE_I2C3 FALSE
|
||||||
|
#define STM32_I2C_I2C1_IRQ_PRIORITY 10
|
||||||
|
#define STM32_I2C_I2C2_IRQ_PRIORITY 10
|
||||||
|
#define STM32_I2C_I2C3_IRQ_PRIORITY 10
|
||||||
|
#define STM32_I2C_I2C1_DMA_PRIORITY 1
|
||||||
|
#define STM32_I2C_I2C2_DMA_PRIORITY 1
|
||||||
|
#define STM32_I2C_I2C3_DMA_PRIORITY 1
|
||||||
|
#define STM32_I2C_I2C1_DMA_ERROR_HOOK() chSysHalt()
|
||||||
|
#define STM32_I2C_I2C2_DMA_ERROR_HOOK() chSysHalt()
|
||||||
|
#define STM32_I2C_I2C3_DMA_ERROR_HOOK() chSysHalt()
|
||||||
|
|
||||||
|
/*
|
||||||
|
* ICU driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_ICU_USE_TIM1 FALSE
|
||||||
|
#define STM32_ICU_USE_TIM2 FALSE
|
||||||
|
#define STM32_ICU_USE_TIM3 FALSE
|
||||||
|
#define STM32_ICU_USE_TIM4 FALSE
|
||||||
|
#define STM32_ICU_USE_TIM5 FALSE
|
||||||
|
#define STM32_ICU_USE_TIM8 FALSE
|
||||||
|
#define STM32_ICU_TIM1_IRQ_PRIORITY 7
|
||||||
|
#define STM32_ICU_TIM2_IRQ_PRIORITY 7
|
||||||
|
#define STM32_ICU_TIM3_IRQ_PRIORITY 7
|
||||||
|
#define STM32_ICU_TIM4_IRQ_PRIORITY 7
|
||||||
|
#define STM32_ICU_TIM5_IRQ_PRIORITY 7
|
||||||
|
#define STM32_ICU_TIM8_IRQ_PRIORITY 7
|
||||||
|
|
||||||
|
/*
|
||||||
|
* PWM driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_PWM_USE_ADVANCED FALSE
|
||||||
|
#define STM32_PWM_USE_TIM1 FALSE
|
||||||
|
#define STM32_PWM_USE_TIM2 FALSE
|
||||||
|
#define STM32_PWM_USE_TIM3 FALSE
|
||||||
|
#define STM32_PWM_USE_TIM4 FALSE
|
||||||
|
#define STM32_PWM_USE_TIM5 FALSE
|
||||||
|
#define STM32_PWM_USE_TIM8 FALSE
|
||||||
|
#define STM32_PWM_TIM1_IRQ_PRIORITY 7
|
||||||
|
#define STM32_PWM_TIM2_IRQ_PRIORITY 7
|
||||||
|
#define STM32_PWM_TIM3_IRQ_PRIORITY 7
|
||||||
|
#define STM32_PWM_TIM4_IRQ_PRIORITY 7
|
||||||
|
#define STM32_PWM_TIM5_IRQ_PRIORITY 7
|
||||||
|
#define STM32_PWM_TIM8_IRQ_PRIORITY 7
|
||||||
|
|
||||||
|
/*
|
||||||
|
* RTC driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_RTC_IRQ_PRIORITY 15
|
||||||
|
|
||||||
|
/*
|
||||||
|
* SERIAL driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_SERIAL_USE_USART1 FALSE
|
||||||
|
#define STM32_SERIAL_USE_USART2 FALSE
|
||||||
|
#define STM32_SERIAL_USE_USART3 TRUE
|
||||||
|
#define STM32_SERIAL_USE_UART4 FALSE
|
||||||
|
#define STM32_SERIAL_USE_UART5 FALSE
|
||||||
|
#define STM32_SERIAL_USE_USART6 FALSE
|
||||||
|
#define STM32_SERIAL_USART1_PRIORITY 12
|
||||||
|
#define STM32_SERIAL_USART2_PRIORITY 12
|
||||||
|
#define STM32_SERIAL_USART3_PRIORITY 12
|
||||||
|
#define STM32_SERIAL_UART4_PRIORITY 12
|
||||||
|
#define STM32_SERIAL_UART5_PRIORITY 12
|
||||||
|
#define STM32_SERIAL_USART6_PRIORITY 12
|
||||||
|
|
||||||
|
/*
|
||||||
|
* SPI driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_SPI_USE_SPI1 FALSE
|
||||||
|
#define STM32_SPI_USE_SPI2 FALSE
|
||||||
|
#define STM32_SPI_USE_SPI3 FALSE
|
||||||
|
#define STM32_SPI_SPI1_DMA_PRIORITY 1
|
||||||
|
#define STM32_SPI_SPI2_DMA_PRIORITY 1
|
||||||
|
#define STM32_SPI_SPI3_DMA_PRIORITY 1
|
||||||
|
#define STM32_SPI_SPI1_IRQ_PRIORITY 10
|
||||||
|
#define STM32_SPI_SPI2_IRQ_PRIORITY 10
|
||||||
|
#define STM32_SPI_SPI3_IRQ_PRIORITY 10
|
||||||
|
#define STM32_SPI_DMA_ERROR_HOOK(spip) chSysHalt()
|
||||||
|
|
||||||
|
/*
|
||||||
|
* UART driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_UART_USE_USART1 FALSE
|
||||||
|
#define STM32_UART_USE_USART2 FALSE
|
||||||
|
#define STM32_UART_USE_USART3 FALSE
|
||||||
|
#define STM32_UART_USART1_IRQ_PRIORITY 12
|
||||||
|
#define STM32_UART_USART2_IRQ_PRIORITY 12
|
||||||
|
#define STM32_UART_USART3_IRQ_PRIORITY 12
|
||||||
|
#define STM32_UART_USART1_DMA_PRIORITY 0
|
||||||
|
#define STM32_UART_USART2_DMA_PRIORITY 0
|
||||||
|
#define STM32_UART_USART3_DMA_PRIORITY 0
|
||||||
|
#define STM32_UART_DMA_ERROR_HOOK(uartp) chSysHalt()
|
||||||
|
|
||||||
|
/*
|
||||||
|
* USB driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_USB_USE_USB1 TRUE
|
||||||
|
#define STM32_USB_LOW_POWER_ON_SUSPEND FALSE
|
||||||
|
#define STM32_USB_USB1_HP_IRQ_PRIORITY 6
|
||||||
|
#define STM32_USB_USB1_LP_IRQ_PRIORITY 14
|
|
@ -0,0 +1,28 @@
|
||||||
|
*****************************************************************************
|
||||||
|
** ChibiOS/RT port for ARM-Cortex-M3 STM32F107. **
|
||||||
|
*****************************************************************************
|
||||||
|
|
||||||
|
** TARGET **
|
||||||
|
|
||||||
|
The demo runs on an Olimex STM32-P107 board.
|
||||||
|
|
||||||
|
** The Demo **
|
||||||
|
|
||||||
|
The demo currently just flashes a LED using a thread and serves HTTP requests
|
||||||
|
at address 192.168.1.20 on port 80.
|
||||||
|
The button activates che ChibiOS/RT test suite, output on SD3.
|
||||||
|
|
||||||
|
** Build Procedure **
|
||||||
|
|
||||||
|
The demo has been tested by using the free Codesourcery GCC-based toolchain
|
||||||
|
and YAGARTO.
|
||||||
|
Just modify the TRGT line in the makefile in order to use different GCC ports.
|
||||||
|
|
||||||
|
** Notes **
|
||||||
|
|
||||||
|
Some files used by the demo are not part of ChibiOS/RT but are copyright of
|
||||||
|
ST Microelectronics and are licensed under a different license.
|
||||||
|
Also note that not all the files present in the ST library are distribited
|
||||||
|
with ChibiOS/RT, you can find the whole library on the ST web site:
|
||||||
|
|
||||||
|
http://www.st.com
|
|
@ -0,0 +1,132 @@
|
||||||
|
/*
|
||||||
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
||||||
|
2011,2012 Giovanni Di Sirio.
|
||||||
|
|
||||||
|
This file is part of ChibiOS/RT.
|
||||||
|
|
||||||
|
ChibiOS/RT 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.
|
||||||
|
|
||||||
|
ChibiOS/RT 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
A special exception to the GPL can be applied should you wish to distribute
|
||||||
|
a combined work that includes ChibiOS/RT, without being obliged to provide
|
||||||
|
the source code for any proprietary components. See the file exception.txt
|
||||||
|
for full details of how and when the exception can be applied.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This file is a modified version of the lwIP web server demo. The original
|
||||||
|
* author is unknown because the file didn't contain any license information.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file web.c
|
||||||
|
* @brief HTTP server wrapper thread code.
|
||||||
|
* @addtogroup WEB_THREAD
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "ch.h"
|
||||||
|
|
||||||
|
#include "lwip/opt.h"
|
||||||
|
#include "lwip/arch.h"
|
||||||
|
#include "lwip/api.h"
|
||||||
|
|
||||||
|
#include "web.h"
|
||||||
|
|
||||||
|
#if LWIP_NETCONN
|
||||||
|
|
||||||
|
static const char http_html_hdr[] = "HTTP/1.1 200 OK\r\nContent-type: text/html\r\n\r\n";
|
||||||
|
static const char http_index_html[] = "<html><head><title>Congrats!</title></head><body><h1>Welcome to our lwIP HTTP server!</h1><p>This is a small test page.</body></html>";
|
||||||
|
|
||||||
|
static void http_server_serve(struct netconn *conn) {
|
||||||
|
struct netbuf *inbuf;
|
||||||
|
char *buf;
|
||||||
|
u16_t buflen;
|
||||||
|
err_t err;
|
||||||
|
|
||||||
|
/* Read the data from the port, blocking if nothing yet there.
|
||||||
|
We assume the request (the part we care about) is in one netbuf */
|
||||||
|
err = netconn_recv(conn, &inbuf);
|
||||||
|
|
||||||
|
if (err == ERR_OK) {
|
||||||
|
netbuf_data(inbuf, (void **)&buf, &buflen);
|
||||||
|
|
||||||
|
/* Is this an HTTP GET command? (only check the first 5 chars, since
|
||||||
|
there are other formats for GET, and we're keeping it very simple )*/
|
||||||
|
if (buflen>=5 &&
|
||||||
|
buf[0]=='G' &&
|
||||||
|
buf[1]=='E' &&
|
||||||
|
buf[2]=='T' &&
|
||||||
|
buf[3]==' ' &&
|
||||||
|
buf[4]=='/' ) {
|
||||||
|
|
||||||
|
/* Send the HTML header
|
||||||
|
* subtract 1 from the size, since we dont send the \0 in the string
|
||||||
|
* NETCONN_NOCOPY: our data is const static, so no need to copy it
|
||||||
|
*/
|
||||||
|
netconn_write(conn, http_html_hdr, sizeof(http_html_hdr)-1, NETCONN_NOCOPY);
|
||||||
|
|
||||||
|
/* Send our HTML page */
|
||||||
|
netconn_write(conn, http_index_html, sizeof(http_index_html)-1, NETCONN_NOCOPY);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* Close the connection (server closes in HTTP) */
|
||||||
|
netconn_close(conn);
|
||||||
|
|
||||||
|
/* Delete the buffer (netconn_recv gives us ownership,
|
||||||
|
so we have to make sure to deallocate the buffer) */
|
||||||
|
netbuf_delete(inbuf);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stack area for the http thread.
|
||||||
|
*/
|
||||||
|
WORKING_AREA(wa_http_server, WEB_THREAD_STACK_SIZE);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* HTTP server thread.
|
||||||
|
*/
|
||||||
|
msg_t http_server(void *p) {
|
||||||
|
struct netconn *conn, *newconn;
|
||||||
|
err_t err;
|
||||||
|
|
||||||
|
(void)p;
|
||||||
|
|
||||||
|
/* Create a new TCP connection handle */
|
||||||
|
conn = netconn_new(NETCONN_TCP);
|
||||||
|
LWIP_ERROR("http_server: invalid conn", (conn != NULL), return RDY_RESET;);
|
||||||
|
|
||||||
|
/* Bind to port 80 (HTTP) with default IP address */
|
||||||
|
netconn_bind(conn, NULL, WEB_THREAD_PORT);
|
||||||
|
|
||||||
|
/* Put the connection into LISTEN state */
|
||||||
|
netconn_listen(conn);
|
||||||
|
|
||||||
|
/* Goes to the final priority after initialization.*/
|
||||||
|
chThdSetPriority(WEB_THREAD_PRIORITY);
|
||||||
|
|
||||||
|
while(1) {
|
||||||
|
err = netconn_accept(conn, &newconn);
|
||||||
|
if (err != ERR_OK)
|
||||||
|
continue;
|
||||||
|
http_server_serve(newconn);
|
||||||
|
netconn_delete(newconn);
|
||||||
|
}
|
||||||
|
return RDY_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* LWIP_NETCONN */
|
||||||
|
|
||||||
|
/** @} */
|
|
@ -0,0 +1,62 @@
|
||||||
|
/*
|
||||||
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
||||||
|
2011,2012 Giovanni Di Sirio.
|
||||||
|
|
||||||
|
This file is part of ChibiOS/RT.
|
||||||
|
|
||||||
|
ChibiOS/RT 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.
|
||||||
|
|
||||||
|
ChibiOS/RT 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
A special exception to the GPL can be applied should you wish to distribute
|
||||||
|
a combined work that includes ChibiOS/RT, without being obliged to provide
|
||||||
|
the source code for any proprietary components. See the file exception.txt
|
||||||
|
for full details of how and when the exception can be applied.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file web.h
|
||||||
|
* @brief HTTP server wrapper thread macros and structures.
|
||||||
|
* @addtogroup WEB_THREAD
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _WEB_H_
|
||||||
|
#define _WEB_H_
|
||||||
|
|
||||||
|
#ifndef WEB_THREAD_STACK_SIZE
|
||||||
|
#define WEB_THREAD_STACK_SIZE 1024
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef WEB_THREAD_PORT
|
||||||
|
#define WEB_THREAD_PORT 80
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef WEB_THREAD_PRIORITY
|
||||||
|
#define WEB_THREAD_PRIORITY (LOWPRIO + 2)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
extern WORKING_AREA(wa_http_server, WEB_THREAD_STACK_SIZE);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
msg_t http_server(void *p);
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* _WEB_H_ */
|
||||||
|
|
||||||
|
/** @} */
|
|
@ -0,0 +1,224 @@
|
||||||
|
##############################################################################
|
||||||
|
# Build global options
|
||||||
|
# NOTE: Can be overridden externally.
|
||||||
|
#
|
||||||
|
|
||||||
|
# Compiler options here.
|
||||||
|
ifeq ($(USE_OPT),)
|
||||||
|
USE_OPT = -O2 -ggdb -fomit-frame-pointer -falign-functions=16
|
||||||
|
endif
|
||||||
|
|
||||||
|
# C specific options here (added to USE_OPT).
|
||||||
|
ifeq ($(USE_COPT),)
|
||||||
|
USE_COPT =
|
||||||
|
endif
|
||||||
|
|
||||||
|
# C++ specific options here (added to USE_OPT).
|
||||||
|
ifeq ($(USE_CPPOPT),)
|
||||||
|
USE_CPPOPT = -fno-rtti
|
||||||
|
endif
|
||||||
|
|
||||||
|
# Enable this if you want the linker to remove unused code and data
|
||||||
|
ifeq ($(USE_LINK_GC),)
|
||||||
|
USE_LINK_GC = yes
|
||||||
|
endif
|
||||||
|
|
||||||
|
# If enabled, this option allows to compile the application in THUMB mode.
|
||||||
|
ifeq ($(USE_THUMB),)
|
||||||
|
USE_THUMB = yes
|
||||||
|
endif
|
||||||
|
|
||||||
|
# Enable this if you want to see the full log while compiling.
|
||||||
|
ifeq ($(USE_VERBOSE_COMPILE),)
|
||||||
|
USE_VERBOSE_COMPILE = no
|
||||||
|
endif
|
||||||
|
|
||||||
|
#
|
||||||
|
# Build global options
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
# Architecture or project specific options
|
||||||
|
#
|
||||||
|
|
||||||
|
# Enables the use of FPU on Cortex-M4.
|
||||||
|
# Enable this if you really want to use the STM FWLib.
|
||||||
|
ifeq ($(USE_FPU),)
|
||||||
|
USE_FPU = no
|
||||||
|
endif
|
||||||
|
|
||||||
|
# Enable this if you really want to use the STM FWLib.
|
||||||
|
ifeq ($(USE_FWLIB),)
|
||||||
|
USE_FWLIB = no
|
||||||
|
endif
|
||||||
|
|
||||||
|
#
|
||||||
|
# Architecture or project specific options
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
# Project, sources and paths
|
||||||
|
#
|
||||||
|
|
||||||
|
# Define project name here
|
||||||
|
PROJECT = ch
|
||||||
|
|
||||||
|
# Imported source files and paths
|
||||||
|
CHIBIOS = ../..
|
||||||
|
include $(CHIBIOS)/boards/OLIMEX_STM32_P407/board.mk
|
||||||
|
include $(CHIBIOS)/os/hal/platforms/STM32F4xx/platform.mk
|
||||||
|
include $(CHIBIOS)/os/hal/hal.mk
|
||||||
|
include $(CHIBIOS)/os/ports/GCC/ARMCMx/STM32F4xx/port.mk
|
||||||
|
include $(CHIBIOS)/os/kernel/kernel.mk
|
||||||
|
include $(CHIBIOS)/os/various/lwip_bindings/lwip.mk
|
||||||
|
include $(CHIBIOS)/test/test.mk
|
||||||
|
|
||||||
|
# Define linker script file here
|
||||||
|
LDSCRIPT= $(PORTLD)/STM32F407xG.ld
|
||||||
|
#LDSCRIPT= $(PORTLD)/STM32F407xG_CCM.ld
|
||||||
|
|
||||||
|
# C sources that can be compiled in ARM or THUMB mode depending on the global
|
||||||
|
# setting.
|
||||||
|
CSRC = $(PORTSRC) \
|
||||||
|
$(KERNSRC) \
|
||||||
|
$(TESTSRC) \
|
||||||
|
$(HALSRC) \
|
||||||
|
$(PLATFORMSRC) \
|
||||||
|
$(BOARDSRC) \
|
||||||
|
$(LWSRC) \
|
||||||
|
$(CHIBIOS)/os/various/evtimer.c \
|
||||||
|
web/web.c main.c
|
||||||
|
|
||||||
|
# C++ sources that can be compiled in ARM or THUMB mode depending on the global
|
||||||
|
# setting.
|
||||||
|
CPPSRC =
|
||||||
|
|
||||||
|
# C sources to be compiled in ARM mode regardless of the global setting.
|
||||||
|
# NOTE: Mixing ARM and THUMB mode enables the -mthumb-interwork compiler
|
||||||
|
# option that results in lower performance and larger code size.
|
||||||
|
ACSRC =
|
||||||
|
|
||||||
|
# C++ sources to be compiled in ARM mode regardless of the global setting.
|
||||||
|
# NOTE: Mixing ARM and THUMB mode enables the -mthumb-interwork compiler
|
||||||
|
# option that results in lower performance and larger code size.
|
||||||
|
ACPPSRC =
|
||||||
|
|
||||||
|
# C sources to be compiled in THUMB mode regardless of the global setting.
|
||||||
|
# NOTE: Mixing ARM and THUMB mode enables the -mthumb-interwork compiler
|
||||||
|
# option that results in lower performance and larger code size.
|
||||||
|
TCSRC =
|
||||||
|
|
||||||
|
# C sources to be compiled in THUMB mode regardless of the global setting.
|
||||||
|
# NOTE: Mixing ARM and THUMB mode enables the -mthumb-interwork compiler
|
||||||
|
# option that results in lower performance and larger code size.
|
||||||
|
TCPPSRC =
|
||||||
|
|
||||||
|
# List ASM source files here
|
||||||
|
ASMSRC = $(PORTASM)
|
||||||
|
|
||||||
|
INCDIR = $(PORTINC) $(KERNINC) $(TESTINC) \
|
||||||
|
$(HALINC) $(PLATFORMINC) $(BOARDINC) $(LWINC) \
|
||||||
|
$(CHIBIOS)/os/various
|
||||||
|
|
||||||
|
#
|
||||||
|
# Project, sources and paths
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
# Compiler settings
|
||||||
|
#
|
||||||
|
|
||||||
|
MCU = cortex-m4
|
||||||
|
|
||||||
|
#TRGT = arm-elf-
|
||||||
|
TRGT = arm-none-eabi-
|
||||||
|
CC = $(TRGT)gcc
|
||||||
|
CPPC = $(TRGT)g++
|
||||||
|
# Enable loading with g++ only if you need C++ runtime support.
|
||||||
|
# NOTE: You can use C++ even without C++ support if you are careful. C++
|
||||||
|
# runtime support makes code size explode.
|
||||||
|
LD = $(TRGT)gcc
|
||||||
|
#LD = $(TRGT)g++
|
||||||
|
CP = $(TRGT)objcopy
|
||||||
|
AS = $(TRGT)gcc -x assembler-with-cpp
|
||||||
|
OD = $(TRGT)objdump
|
||||||
|
HEX = $(CP) -O ihex
|
||||||
|
BIN = $(CP) -O binary
|
||||||
|
|
||||||
|
# ARM-specific options here
|
||||||
|
AOPT =
|
||||||
|
|
||||||
|
# THUMB-specific options here
|
||||||
|
TOPT = -mthumb -DTHUMB
|
||||||
|
|
||||||
|
# Define C warning options here
|
||||||
|
CWARN = -Wall -Wextra -Wstrict-prototypes
|
||||||
|
|
||||||
|
# Define C++ warning options here
|
||||||
|
CPPWARN = -Wall -Wextra
|
||||||
|
|
||||||
|
#
|
||||||
|
# Compiler settings
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
# Start of default section
|
||||||
|
#
|
||||||
|
|
||||||
|
# List all default C defines here, like -D_DEBUG=1
|
||||||
|
DDEFS =
|
||||||
|
|
||||||
|
# List all default ASM defines here, like -D_DEBUG=1
|
||||||
|
DADEFS =
|
||||||
|
|
||||||
|
# List all default directories to look for include files here
|
||||||
|
DINCDIR =
|
||||||
|
|
||||||
|
# List the default directory to look for the libraries here
|
||||||
|
DLIBDIR =
|
||||||
|
|
||||||
|
# List all default libraries here
|
||||||
|
DLIBS =
|
||||||
|
|
||||||
|
#
|
||||||
|
# End of default section
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
# Start of user section
|
||||||
|
#
|
||||||
|
|
||||||
|
# List all user C define here, like -D_DEBUG=1
|
||||||
|
UDEFS =
|
||||||
|
|
||||||
|
# Define ASM defines here
|
||||||
|
UADEFS =
|
||||||
|
|
||||||
|
# List all user directories here
|
||||||
|
UINCDIR =
|
||||||
|
|
||||||
|
# List the user directory to look for the libraries here
|
||||||
|
ULIBDIR =
|
||||||
|
|
||||||
|
# List all user libraries here
|
||||||
|
ULIBS =
|
||||||
|
|
||||||
|
#
|
||||||
|
# End of user defines
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
ifeq ($(USE_FPU),yes)
|
||||||
|
USE_OPT += -mfloat-abi=softfp -mfpu=fpv4-sp-d16 -fsingle-precision-constant
|
||||||
|
DDEFS += -DCORTEX_USE_FPU=TRUE
|
||||||
|
else
|
||||||
|
DDEFS += -DCORTEX_USE_FPU=FALSE
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(USE_FWLIB),yes)
|
||||||
|
include $(CHIBIOS)/ext/stm32lib/stm32lib.mk
|
||||||
|
CSRC += $(STM32SRC)
|
||||||
|
INCDIR += $(STM32INC)
|
||||||
|
USE_OPT += -DUSE_STDPERIPH_DRIVER
|
||||||
|
endif
|
||||||
|
|
||||||
|
include $(CHIBIOS)/os/ports/GCC/ARMCMx/rules.mk
|
|
@ -0,0 +1,542 @@
|
||||||
|
/*
|
||||||
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
||||||
|
2011,2012 Giovanni Di Sirio.
|
||||||
|
|
||||||
|
This file is part of ChibiOS/RT.
|
||||||
|
|
||||||
|
ChibiOS/RT 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.
|
||||||
|
|
||||||
|
ChibiOS/RT 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
A special exception to the GPL can be applied should you wish to distribute
|
||||||
|
a combined work that includes ChibiOS/RT, without being obliged to provide
|
||||||
|
the source code for any proprietary components. See the file exception.txt
|
||||||
|
for full details of how and when the exception can be applied.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file templates/chconf.h
|
||||||
|
* @brief Configuration file template.
|
||||||
|
* @details A copy of this file must be placed in each project directory, it
|
||||||
|
* contains the application specific kernel settings.
|
||||||
|
*
|
||||||
|
* @addtogroup config
|
||||||
|
* @details Kernel related settings and hooks.
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _CHCONF_H_
|
||||||
|
#define _CHCONF_H_
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/**
|
||||||
|
* @name Kernel parameters and options
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief System tick frequency.
|
||||||
|
* @details Frequency of the system timer that drives the system ticks. This
|
||||||
|
* setting also defines the system tick time unit.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_FREQUENCY) || defined(__DOXYGEN__)
|
||||||
|
#define CH_FREQUENCY 1000
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Round robin interval.
|
||||||
|
* @details This constant is the number of system ticks allowed for the
|
||||||
|
* threads before preemption occurs. Setting this value to zero
|
||||||
|
* disables the preemption for threads with equal priority and the
|
||||||
|
* round robin becomes cooperative. Note that higher priority
|
||||||
|
* threads can still preempt, the kernel is always preemptive.
|
||||||
|
*
|
||||||
|
* @note Disabling the round robin preemption makes the kernel more compact
|
||||||
|
* and generally faster.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_TIME_QUANTUM) || defined(__DOXYGEN__)
|
||||||
|
#define CH_TIME_QUANTUM 20
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Managed RAM size.
|
||||||
|
* @details Size of the RAM area to be managed by the OS. If set to zero
|
||||||
|
* then the whole available RAM is used. The core memory is made
|
||||||
|
* available to the heap allocator and/or can be used directly through
|
||||||
|
* the simplified core memory allocator.
|
||||||
|
*
|
||||||
|
* @note In order to let the OS manage the whole RAM the linker script must
|
||||||
|
* provide the @p __heap_base__ and @p __heap_end__ symbols.
|
||||||
|
* @note Requires @p CH_USE_MEMCORE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_MEMCORE_SIZE) || defined(__DOXYGEN__)
|
||||||
|
#define CH_MEMCORE_SIZE 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Idle thread automatic spawn suppression.
|
||||||
|
* @details When this option is activated the function @p chSysInit()
|
||||||
|
* does not spawn the idle thread automatically. The application has
|
||||||
|
* then the responsibility to do one of the following:
|
||||||
|
* - Spawn a custom idle thread at priority @p IDLEPRIO.
|
||||||
|
* - Change the main() thread priority to @p IDLEPRIO then enter
|
||||||
|
* an endless loop. In this scenario the @p main() thread acts as
|
||||||
|
* the idle thread.
|
||||||
|
* .
|
||||||
|
* @note Unless an idle thread is spawned the @p main() thread must not
|
||||||
|
* enter a sleep state.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_NO_IDLE_THREAD) || defined(__DOXYGEN__)
|
||||||
|
#define CH_NO_IDLE_THREAD FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/**
|
||||||
|
* @name Performance options
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief OS optimization.
|
||||||
|
* @details If enabled then time efficient rather than space efficient code
|
||||||
|
* is used when two possible implementations exist.
|
||||||
|
*
|
||||||
|
* @note This is not related to the compiler optimization options.
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_OPTIMIZE_SPEED) || defined(__DOXYGEN__)
|
||||||
|
#define CH_OPTIMIZE_SPEED TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/**
|
||||||
|
* @name Subsystem options
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Threads registry APIs.
|
||||||
|
* @details If enabled then the registry APIs are included in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_REGISTRY) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_REGISTRY TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Threads synchronization APIs.
|
||||||
|
* @details If enabled then the @p chThdWait() function is included in
|
||||||
|
* the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_WAITEXIT) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_WAITEXIT TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Semaphores APIs.
|
||||||
|
* @details If enabled then the Semaphores APIs are included in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_SEMAPHORES) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_SEMAPHORES TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Semaphores queuing mode.
|
||||||
|
* @details If enabled then the threads are enqueued on semaphores by
|
||||||
|
* priority rather than in FIFO order.
|
||||||
|
*
|
||||||
|
* @note The default is @p FALSE. Enable this if you have special requirements.
|
||||||
|
* @note Requires @p CH_USE_SEMAPHORES.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_SEMAPHORES_PRIORITY) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_SEMAPHORES_PRIORITY FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Atomic semaphore API.
|
||||||
|
* @details If enabled then the semaphores the @p chSemSignalWait() API
|
||||||
|
* is included in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
* @note Requires @p CH_USE_SEMAPHORES.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_SEMSW) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_SEMSW TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Mutexes APIs.
|
||||||
|
* @details If enabled then the mutexes APIs are included in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_MUTEXES) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_MUTEXES TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Conditional Variables APIs.
|
||||||
|
* @details If enabled then the conditional variables APIs are included
|
||||||
|
* in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
* @note Requires @p CH_USE_MUTEXES.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_CONDVARS) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_CONDVARS TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Conditional Variables APIs with timeout.
|
||||||
|
* @details If enabled then the conditional variables APIs with timeout
|
||||||
|
* specification are included in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
* @note Requires @p CH_USE_CONDVARS.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_CONDVARS_TIMEOUT) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_CONDVARS_TIMEOUT TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Events Flags APIs.
|
||||||
|
* @details If enabled then the event flags APIs are included in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_EVENTS) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_EVENTS TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Events Flags APIs with timeout.
|
||||||
|
* @details If enabled then the events APIs with timeout specification
|
||||||
|
* are included in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
* @note Requires @p CH_USE_EVENTS.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_EVENTS_TIMEOUT) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_EVENTS_TIMEOUT TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Synchronous Messages APIs.
|
||||||
|
* @details If enabled then the synchronous messages APIs are included
|
||||||
|
* in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_MESSAGES) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_MESSAGES TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Synchronous Messages queuing mode.
|
||||||
|
* @details If enabled then messages are served by priority rather than in
|
||||||
|
* FIFO order.
|
||||||
|
*
|
||||||
|
* @note The default is @p FALSE. Enable this if you have special requirements.
|
||||||
|
* @note Requires @p CH_USE_MESSAGES.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_MESSAGES_PRIORITY) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_MESSAGES_PRIORITY FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Mailboxes APIs.
|
||||||
|
* @details If enabled then the asynchronous messages (mailboxes) APIs are
|
||||||
|
* included in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
* @note Requires @p CH_USE_SEMAPHORES.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_MAILBOXES) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_MAILBOXES TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief I/O Queues APIs.
|
||||||
|
* @details If enabled then the I/O queues APIs are included in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_QUEUES) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_QUEUES TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Core Memory Manager APIs.
|
||||||
|
* @details If enabled then the core memory manager APIs are included
|
||||||
|
* in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_MEMCORE) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_MEMCORE TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Heap Allocator APIs.
|
||||||
|
* @details If enabled then the memory heap allocator APIs are included
|
||||||
|
* in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
* @note Requires @p CH_USE_MEMCORE and either @p CH_USE_MUTEXES or
|
||||||
|
* @p CH_USE_SEMAPHORES.
|
||||||
|
* @note Mutexes are recommended.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_HEAP) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_HEAP TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief C-runtime allocator.
|
||||||
|
* @details If enabled the the heap allocator APIs just wrap the C-runtime
|
||||||
|
* @p malloc() and @p free() functions.
|
||||||
|
*
|
||||||
|
* @note The default is @p FALSE.
|
||||||
|
* @note Requires @p CH_USE_HEAP.
|
||||||
|
* @note The C-runtime may or may not require @p CH_USE_MEMCORE, see the
|
||||||
|
* appropriate documentation.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_MALLOC_HEAP) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_MALLOC_HEAP FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Memory Pools Allocator APIs.
|
||||||
|
* @details If enabled then the memory pools allocator APIs are included
|
||||||
|
* in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_MEMPOOLS) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_MEMPOOLS TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Dynamic Threads APIs.
|
||||||
|
* @details If enabled then the dynamic threads creation APIs are included
|
||||||
|
* in the kernel.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
* @note Requires @p CH_USE_WAITEXIT.
|
||||||
|
* @note Requires @p CH_USE_HEAP and/or @p CH_USE_MEMPOOLS.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_USE_DYNAMIC) || defined(__DOXYGEN__)
|
||||||
|
#define CH_USE_DYNAMIC TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/**
|
||||||
|
* @name Debug options
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Debug option, system state check.
|
||||||
|
* @details If enabled the correct call protocol for system APIs is checked
|
||||||
|
* at runtime.
|
||||||
|
*
|
||||||
|
* @note The default is @p FALSE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_DBG_SYSTEM_STATE_CHECK) || defined(__DOXYGEN__)
|
||||||
|
#define CH_DBG_SYSTEM_STATE_CHECK FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Debug option, parameters checks.
|
||||||
|
* @details If enabled then the checks on the API functions input
|
||||||
|
* parameters are activated.
|
||||||
|
*
|
||||||
|
* @note The default is @p FALSE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_DBG_ENABLE_CHECKS) || defined(__DOXYGEN__)
|
||||||
|
#define CH_DBG_ENABLE_CHECKS FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Debug option, consistency checks.
|
||||||
|
* @details If enabled then all the assertions in the kernel code are
|
||||||
|
* activated. This includes consistency checks inside the kernel,
|
||||||
|
* runtime anomalies and port-defined checks.
|
||||||
|
*
|
||||||
|
* @note The default is @p FALSE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_DBG_ENABLE_ASSERTS) || defined(__DOXYGEN__)
|
||||||
|
#define CH_DBG_ENABLE_ASSERTS FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Debug option, trace buffer.
|
||||||
|
* @details If enabled then the context switch circular trace buffer is
|
||||||
|
* activated.
|
||||||
|
*
|
||||||
|
* @note The default is @p FALSE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_DBG_ENABLE_TRACE) || defined(__DOXYGEN__)
|
||||||
|
#define CH_DBG_ENABLE_TRACE FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Debug option, stack checks.
|
||||||
|
* @details If enabled then a runtime stack check is performed.
|
||||||
|
*
|
||||||
|
* @note The default is @p FALSE.
|
||||||
|
* @note The stack check is performed in a architecture/port dependent way.
|
||||||
|
* It may not be implemented or some ports.
|
||||||
|
* @note The default failure mode is to halt the system with the global
|
||||||
|
* @p panic_msg variable set to @p NULL.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_DBG_ENABLE_STACK_CHECK) || defined(__DOXYGEN__)
|
||||||
|
#define CH_DBG_ENABLE_STACK_CHECK FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Debug option, stacks initialization.
|
||||||
|
* @details If enabled then the threads working area is filled with a byte
|
||||||
|
* value when a thread is created. This can be useful for the
|
||||||
|
* runtime measurement of the used stack.
|
||||||
|
*
|
||||||
|
* @note The default is @p FALSE.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_DBG_FILL_THREADS) || defined(__DOXYGEN__)
|
||||||
|
#define CH_DBG_FILL_THREADS FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Debug option, threads profiling.
|
||||||
|
* @details If enabled then a field is added to the @p Thread structure that
|
||||||
|
* counts the system ticks occurred while executing the thread.
|
||||||
|
*
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
* @note This debug option is defaulted to TRUE because it is required by
|
||||||
|
* some test cases into the test suite.
|
||||||
|
*/
|
||||||
|
#if !defined(CH_DBG_THREADS_PROFILING) || defined(__DOXYGEN__)
|
||||||
|
#define CH_DBG_THREADS_PROFILING TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/**
|
||||||
|
* @name Kernel hooks
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Threads descriptor structure extension.
|
||||||
|
* @details User fields added to the end of the @p Thread structure.
|
||||||
|
*/
|
||||||
|
#if !defined(THREAD_EXT_FIELDS) || defined(__DOXYGEN__)
|
||||||
|
#define THREAD_EXT_FIELDS \
|
||||||
|
/* Add threads custom fields here.*/
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Threads initialization hook.
|
||||||
|
* @details User initialization code added to the @p chThdInit() API.
|
||||||
|
*
|
||||||
|
* @note It is invoked from within @p chThdInit() and implicitly from all
|
||||||
|
* the threads creation APIs.
|
||||||
|
*/
|
||||||
|
#if !defined(THREAD_EXT_INIT_HOOK) || defined(__DOXYGEN__)
|
||||||
|
#define THREAD_EXT_INIT_HOOK(tp) { \
|
||||||
|
/* Add threads initialization code here.*/ \
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Threads finalization hook.
|
||||||
|
* @details User finalization code added to the @p chThdExit() API.
|
||||||
|
*
|
||||||
|
* @note It is inserted into lock zone.
|
||||||
|
* @note It is also invoked when the threads simply return in order to
|
||||||
|
* terminate.
|
||||||
|
*/
|
||||||
|
#if !defined(THREAD_EXT_EXIT_HOOK) || defined(__DOXYGEN__)
|
||||||
|
#define THREAD_EXT_EXIT_HOOK(tp) { \
|
||||||
|
/* Add threads finalization code here.*/ \
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Context switch hook.
|
||||||
|
* @details This hook is invoked just before switching between threads.
|
||||||
|
*/
|
||||||
|
#if !defined(THREAD_CONTEXT_SWITCH_HOOK) || defined(__DOXYGEN__)
|
||||||
|
#define THREAD_CONTEXT_SWITCH_HOOK(ntp, otp) { \
|
||||||
|
/* System halt code here.*/ \
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Idle Loop hook.
|
||||||
|
* @details This hook is continuously invoked by the idle thread loop.
|
||||||
|
*/
|
||||||
|
#if !defined(IDLE_LOOP_HOOK) || defined(__DOXYGEN__)
|
||||||
|
#define IDLE_LOOP_HOOK() { \
|
||||||
|
/* Idle loop code here.*/ \
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief System tick event hook.
|
||||||
|
* @details This hook is invoked in the system tick handler immediately
|
||||||
|
* after processing the virtual timers queue.
|
||||||
|
*/
|
||||||
|
#if !defined(SYSTEM_TICK_EVENT_HOOK) || defined(__DOXYGEN__)
|
||||||
|
#define SYSTEM_TICK_EVENT_HOOK() { \
|
||||||
|
/* System tick event code here.*/ \
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief System halt hook.
|
||||||
|
* @details This hook is invoked in case to a system halting error before
|
||||||
|
* the system is halted.
|
||||||
|
*/
|
||||||
|
#if !defined(SYSTEM_HALT_HOOK) || defined(__DOXYGEN__)
|
||||||
|
#define SYSTEM_HALT_HOOK() { \
|
||||||
|
/* System halt code here.*/ \
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* Port-specific settings (override port settings defaulted in chcore.h). */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
#endif /* _CHCONF_H_ */
|
||||||
|
|
||||||
|
/** @} */
|
|
@ -0,0 +1,349 @@
|
||||||
|
/*
|
||||||
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
||||||
|
2011,2012 Giovanni Di Sirio.
|
||||||
|
|
||||||
|
This file is part of ChibiOS/RT.
|
||||||
|
|
||||||
|
ChibiOS/RT 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.
|
||||||
|
|
||||||
|
ChibiOS/RT 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
A special exception to the GPL can be applied should you wish to distribute
|
||||||
|
a combined work that includes ChibiOS/RT, without being obliged to provide
|
||||||
|
the source code for any proprietary components. See the file exception.txt
|
||||||
|
for full details of how and when the exception can be applied.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file templates/halconf.h
|
||||||
|
* @brief HAL configuration header.
|
||||||
|
* @details HAL configuration file, this file allows to enable or disable the
|
||||||
|
* various device drivers from your application. You may also use
|
||||||
|
* this file in order to override the device drivers default settings.
|
||||||
|
*
|
||||||
|
* @addtogroup HAL_CONF
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _HALCONF_H_
|
||||||
|
#define _HALCONF_H_
|
||||||
|
|
||||||
|
#include "mcuconf.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the TM subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_TM) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_TM TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the PAL subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_PAL) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_PAL TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the ADC subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_ADC) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_ADC FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the CAN subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_CAN) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_CAN FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the EXT subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_EXT) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_EXT FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the GPT subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_GPT) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_GPT FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the I2C subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_I2C) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_I2C FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the ICU subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_ICU) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_ICU FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the MAC subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_MAC) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_MAC TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the MMC_SPI subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_MMC_SPI) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_MMC_SPI FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the PWM subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_PWM) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_PWM FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the RTC subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_RTC) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_RTC FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the SDC subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_SDC) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_SDC FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the SERIAL subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_SERIAL) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_SERIAL TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the SERIAL over USB subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_SERIAL_USB) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_SERIAL_USB FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the SPI subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_SPI) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_SPI FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the UART subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_UART) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_UART FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the USB subsystem.
|
||||||
|
*/
|
||||||
|
#if !defined(HAL_USE_USB) || defined(__DOXYGEN__)
|
||||||
|
#define HAL_USE_USB FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* ADC driver related settings. */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables synchronous APIs.
|
||||||
|
* @note Disabling this option saves both code and data space.
|
||||||
|
*/
|
||||||
|
#if !defined(ADC_USE_WAIT) || defined(__DOXYGEN__)
|
||||||
|
#define ADC_USE_WAIT TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the @p adcAcquireBus() and @p adcReleaseBus() APIs.
|
||||||
|
* @note Disabling this option saves both code and data space.
|
||||||
|
*/
|
||||||
|
#if !defined(ADC_USE_MUTUAL_EXCLUSION) || defined(__DOXYGEN__)
|
||||||
|
#define ADC_USE_MUTUAL_EXCLUSION TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* CAN driver related settings. */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Sleep mode related APIs inclusion switch.
|
||||||
|
*/
|
||||||
|
#if !defined(CAN_USE_SLEEP_MODE) || defined(__DOXYGEN__)
|
||||||
|
#define CAN_USE_SLEEP_MODE TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* I2C driver related settings. */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the mutual exclusion APIs on the I2C bus.
|
||||||
|
*/
|
||||||
|
#if !defined(I2C_USE_MUTUAL_EXCLUSION) || defined(__DOXYGEN__)
|
||||||
|
#define I2C_USE_MUTUAL_EXCLUSION TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* MAC driver related settings. */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables an event sources for incoming packets.
|
||||||
|
*/
|
||||||
|
#if !defined(MAC_USE_EVENTS) || defined(__DOXYGEN__)
|
||||||
|
#define MAC_USE_EVENTS TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* MMC_SPI driver related settings. */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Block size for MMC transfers.
|
||||||
|
*/
|
||||||
|
#if !defined(MMC_SECTOR_SIZE) || defined(__DOXYGEN__)
|
||||||
|
#define MMC_SECTOR_SIZE 512
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Delays insertions.
|
||||||
|
* @details If enabled this options inserts delays into the MMC waiting
|
||||||
|
* routines releasing some extra CPU time for the threads with
|
||||||
|
* lower priority, this may slow down the driver a bit however.
|
||||||
|
* This option is recommended also if the SPI driver does not
|
||||||
|
* use a DMA channel and heavily loads the CPU.
|
||||||
|
*/
|
||||||
|
#if !defined(MMC_NICE_WAITING) || defined(__DOXYGEN__)
|
||||||
|
#define MMC_NICE_WAITING TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Number of positive insertion queries before generating the
|
||||||
|
* insertion event.
|
||||||
|
*/
|
||||||
|
#if !defined(MMC_POLLING_INTERVAL) || defined(__DOXYGEN__)
|
||||||
|
#define MMC_POLLING_INTERVAL 10
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Interval, in milliseconds, between insertion queries.
|
||||||
|
*/
|
||||||
|
#if !defined(MMC_POLLING_DELAY) || defined(__DOXYGEN__)
|
||||||
|
#define MMC_POLLING_DELAY 10
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Uses the SPI polled API for small data transfers.
|
||||||
|
* @details Polled transfers usually improve performance because it
|
||||||
|
* saves two context switches and interrupt servicing. Note
|
||||||
|
* that this option has no effect on large transfers which
|
||||||
|
* are always performed using DMAs/IRQs.
|
||||||
|
*/
|
||||||
|
#if !defined(MMC_USE_SPI_POLLING) || defined(__DOXYGEN__)
|
||||||
|
#define MMC_USE_SPI_POLLING TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* SDC driver related settings. */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Number of initialization attempts before rejecting the card.
|
||||||
|
* @note Attempts are performed at 10mS intervals.
|
||||||
|
*/
|
||||||
|
#if !defined(SDC_INIT_RETRY) || defined(__DOXYGEN__)
|
||||||
|
#define SDC_INIT_RETRY 100
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Include support for MMC cards.
|
||||||
|
* @note MMC support is not yet implemented so this option must be kept
|
||||||
|
* at @p FALSE.
|
||||||
|
*/
|
||||||
|
#if !defined(SDC_MMC_SUPPORT) || defined(__DOXYGEN__)
|
||||||
|
#define SDC_MMC_SUPPORT FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Delays insertions.
|
||||||
|
* @details If enabled this options inserts delays into the MMC waiting
|
||||||
|
* routines releasing some extra CPU time for the threads with
|
||||||
|
* lower priority, this may slow down the driver a bit however.
|
||||||
|
*/
|
||||||
|
#if !defined(SDC_NICE_WAITING) || defined(__DOXYGEN__)
|
||||||
|
#define SDC_NICE_WAITING TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* SERIAL driver related settings. */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Default bit rate.
|
||||||
|
* @details Configuration parameter, this is the baud rate selected for the
|
||||||
|
* default configuration.
|
||||||
|
*/
|
||||||
|
#if !defined(SERIAL_DEFAULT_BITRATE) || defined(__DOXYGEN__)
|
||||||
|
#define SERIAL_DEFAULT_BITRATE 38400
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Serial buffers size.
|
||||||
|
* @details Configuration parameter, you can change the depth of the queue
|
||||||
|
* buffers depending on the requirements of your application.
|
||||||
|
* @note The default is 64 bytes for both the transmission and receive
|
||||||
|
* buffers.
|
||||||
|
*/
|
||||||
|
#if !defined(SERIAL_BUFFERS_SIZE) || defined(__DOXYGEN__)
|
||||||
|
#define SERIAL_BUFFERS_SIZE 16
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* SPI driver related settings. */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables synchronous APIs.
|
||||||
|
* @note Disabling this option saves both code and data space.
|
||||||
|
*/
|
||||||
|
#if !defined(SPI_USE_WAIT) || defined(__DOXYGEN__)
|
||||||
|
#define SPI_USE_WAIT TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enables the @p spiAcquireBus() and @p spiReleaseBus() APIs.
|
||||||
|
* @note Disabling this option saves both code and data space.
|
||||||
|
*/
|
||||||
|
#if !defined(SPI_USE_MUTUAL_EXCLUSION) || defined(__DOXYGEN__)
|
||||||
|
#define SPI_USE_MUTUAL_EXCLUSION TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* _HALCONF_H_ */
|
||||||
|
|
||||||
|
/** @} */
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,98 @@
|
||||||
|
/*
|
||||||
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
||||||
|
2011,2012 Giovanni Di Sirio.
|
||||||
|
|
||||||
|
This file is part of ChibiOS/RT.
|
||||||
|
|
||||||
|
ChibiOS/RT 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.
|
||||||
|
|
||||||
|
ChibiOS/RT 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
A special exception to the GPL can be applied should you wish to distribute
|
||||||
|
a combined work that includes ChibiOS/RT, without being obliged to provide
|
||||||
|
the source code for any proprietary components. See the file exception.txt
|
||||||
|
for full details of how and when the exception can be applied.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "ch.h"
|
||||||
|
#include "hal.h"
|
||||||
|
#include "test.h"
|
||||||
|
|
||||||
|
#include "lwipthread.h"
|
||||||
|
|
||||||
|
#include "web/web.h"
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Green LED blinker thread, times are in milliseconds.
|
||||||
|
*/
|
||||||
|
static WORKING_AREA(waThread1, 128);
|
||||||
|
static msg_t Thread1(void *arg) {
|
||||||
|
|
||||||
|
(void)arg;
|
||||||
|
chRegSetThreadName("blinker");
|
||||||
|
while (TRUE) {
|
||||||
|
palClearPad(GPIOF, GPIOF_STAT1);
|
||||||
|
chThdSleepMilliseconds(500);
|
||||||
|
palSetPad(GPIOF, GPIOF_STAT1);
|
||||||
|
chThdSleepMilliseconds(500);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Application entry point.
|
||||||
|
*/
|
||||||
|
int main(void) {
|
||||||
|
|
||||||
|
/*
|
||||||
|
* System initializations.
|
||||||
|
* - HAL initialization, this also initializes the configured device drivers
|
||||||
|
* and performs the board-specific initializations.
|
||||||
|
* - Kernel initialization, the main() function becomes a thread and the
|
||||||
|
* RTOS is active.
|
||||||
|
*/
|
||||||
|
halInit();
|
||||||
|
chSysInit();
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Activates the serial driver 3 using the driver default configuration.
|
||||||
|
*/
|
||||||
|
sdStart(&SD6, NULL);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Creates the blinker thread.
|
||||||
|
*/
|
||||||
|
chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Creates the LWIP threads (it changes priority internally).
|
||||||
|
*/
|
||||||
|
chThdCreateStatic(wa_lwip_thread, LWIP_THREAD_STACK_SIZE, NORMALPRIO + 1,
|
||||||
|
lwip_thread, NULL);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Creates the HTTP thread (it changes priority internally).
|
||||||
|
*/
|
||||||
|
chThdCreateStatic(wa_http_server, sizeof(wa_http_server), NORMALPRIO + 1,
|
||||||
|
http_server, NULL);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Normal main() thread activity, in this demo it does nothing except
|
||||||
|
* sleeping in a loop and check the button state.
|
||||||
|
*/
|
||||||
|
while (TRUE) {
|
||||||
|
if (palReadPad(GPIOC, GPIOC_SWITCH_TAMPER) == 0)
|
||||||
|
TestThread(&SD6);
|
||||||
|
chThdSleepMilliseconds(500);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,241 @@
|
||||||
|
/*
|
||||||
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
||||||
|
2011,2012 Giovanni Di Sirio.
|
||||||
|
|
||||||
|
This file is part of ChibiOS/RT.
|
||||||
|
|
||||||
|
ChibiOS/RT 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.
|
||||||
|
|
||||||
|
ChibiOS/RT 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
A special exception to the GPL can be applied should you wish to distribute
|
||||||
|
a combined work that includes ChibiOS/RT, without being obliged to provide
|
||||||
|
the source code for any proprietary components. See the file exception.txt
|
||||||
|
for full details of how and when the exception can be applied.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* STM32F4xx drivers configuration.
|
||||||
|
* The following settings override the default settings present in
|
||||||
|
* the various device driver implementation headers.
|
||||||
|
* Note that the settings for each driver only have effect if the whole
|
||||||
|
* driver is enabled in halconf.h.
|
||||||
|
*
|
||||||
|
* IRQ priorities:
|
||||||
|
* 15...0 Lowest...Highest.
|
||||||
|
*
|
||||||
|
* DMA priorities:
|
||||||
|
* 0...3 Lowest...Highest.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* HAL driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_NO_INIT FALSE
|
||||||
|
#define STM32_HSI_ENABLED TRUE
|
||||||
|
#define STM32_LSI_ENABLED TRUE
|
||||||
|
#define STM32_HSE_ENABLED TRUE
|
||||||
|
#define STM32_LSE_ENABLED FALSE
|
||||||
|
#define STM32_CLOCK48_REQUIRED TRUE
|
||||||
|
#define STM32_SW STM32_SW_PLL
|
||||||
|
#define STM32_PLLSRC STM32_PLLSRC_HSE
|
||||||
|
#define STM32_PLLM_VALUE 25
|
||||||
|
#define STM32_PLLN_VALUE 336
|
||||||
|
#define STM32_PLLP_VALUE 2
|
||||||
|
#define STM32_PLLQ_VALUE 7
|
||||||
|
#define STM32_HPRE STM32_HPRE_DIV1
|
||||||
|
#define STM32_PPRE1 STM32_PPRE1_DIV4
|
||||||
|
#define STM32_PPRE2 STM32_PPRE2_DIV2
|
||||||
|
#define STM32_RTCSEL STM32_RTCSEL_LSI
|
||||||
|
#define STM32_RTCPRE_VALUE 8
|
||||||
|
#define STM32_MCO1SEL STM32_MCO1SEL_HSI
|
||||||
|
#define STM32_MCO1PRE STM32_MCO1PRE_DIV1
|
||||||
|
#define STM32_MCO2SEL STM32_MCO2SEL_SYSCLK
|
||||||
|
#define STM32_MCO2PRE STM32_MCO2PRE_DIV5
|
||||||
|
#define STM32_I2SSRC STM32_I2SSRC_CKIN
|
||||||
|
#define STM32_PLLI2SN_VALUE 192
|
||||||
|
#define STM32_PLLI2SR_VALUE 5
|
||||||
|
#define STM32_VOS STM32_VOS_HIGH
|
||||||
|
#define STM32_PVD_ENABLE FALSE
|
||||||
|
#define STM32_PLS STM32_PLS_LEV0
|
||||||
|
|
||||||
|
/*
|
||||||
|
* ADC driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_ADC_ADCPRE ADC_CCR_ADCPRE_DIV4
|
||||||
|
#define STM32_ADC_USE_ADC1 TRUE
|
||||||
|
#define STM32_ADC_USE_ADC2 TRUE
|
||||||
|
#define STM32_ADC_USE_ADC3 TRUE
|
||||||
|
#define STM32_ADC_ADC1_DMA_STREAM STM32_DMA_STREAM_ID(2, 4)
|
||||||
|
#define STM32_ADC_ADC2_DMA_STREAM STM32_DMA_STREAM_ID(2, 2)
|
||||||
|
#define STM32_ADC_ADC3_DMA_STREAM STM32_DMA_STREAM_ID(2, 1)
|
||||||
|
#define STM32_ADC_ADC1_DMA_PRIORITY 2
|
||||||
|
#define STM32_ADC_ADC2_DMA_PRIORITY 2
|
||||||
|
#define STM32_ADC_ADC3_DMA_PRIORITY 2
|
||||||
|
#define STM32_ADC_IRQ_PRIORITY 5
|
||||||
|
#define STM32_ADC_ADC1_DMA_IRQ_PRIORITY 5
|
||||||
|
#define STM32_ADC_ADC2_DMA_IRQ_PRIORITY 5
|
||||||
|
#define STM32_ADC_ADC3_DMA_IRQ_PRIORITY 5
|
||||||
|
|
||||||
|
/*
|
||||||
|
* CAN driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_CAN_USE_CAN1 TRUE
|
||||||
|
#define STM32_CAN_CAN1_IRQ_PRIORITY 11
|
||||||
|
|
||||||
|
/*
|
||||||
|
* EXT driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_EXT_EXTI0_IRQ_PRIORITY 6
|
||||||
|
#define STM32_EXT_EXTI1_IRQ_PRIORITY 6
|
||||||
|
#define STM32_EXT_EXTI2_IRQ_PRIORITY 6
|
||||||
|
#define STM32_EXT_EXTI3_IRQ_PRIORITY 6
|
||||||
|
#define STM32_EXT_EXTI4_IRQ_PRIORITY 6
|
||||||
|
#define STM32_EXT_EXTI5_9_IRQ_PRIORITY 6
|
||||||
|
#define STM32_EXT_EXTI10_15_IRQ_PRIORITY 6
|
||||||
|
#define STM32_EXT_EXTI16_IRQ_PRIORITY 6
|
||||||
|
#define STM32_EXT_EXTI17_IRQ_PRIORITY 15
|
||||||
|
#define STM32_EXT_EXTI18_IRQ_PRIORITY 6
|
||||||
|
#define STM32_EXT_EXTI19_IRQ_PRIORITY 6
|
||||||
|
#define STM32_EXT_EXTI20_IRQ_PRIORITY 6
|
||||||
|
#define STM32_EXT_EXTI21_IRQ_PRIORITY 15
|
||||||
|
#define STM32_EXT_EXTI22_IRQ_PRIORITY 15
|
||||||
|
|
||||||
|
/*
|
||||||
|
* GPT driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_GPT_USE_TIM1 FALSE
|
||||||
|
#define STM32_GPT_USE_TIM2 FALSE
|
||||||
|
#define STM32_GPT_USE_TIM3 FALSE
|
||||||
|
#define STM32_GPT_USE_TIM4 FALSE
|
||||||
|
#define STM32_GPT_USE_TIM5 FALSE
|
||||||
|
#define STM32_GPT_USE_TIM8 FALSE
|
||||||
|
#define STM32_GPT_TIM1_IRQ_PRIORITY 7
|
||||||
|
#define STM32_GPT_TIM2_IRQ_PRIORITY 7
|
||||||
|
#define STM32_GPT_TIM3_IRQ_PRIORITY 7
|
||||||
|
#define STM32_GPT_TIM4_IRQ_PRIORITY 7
|
||||||
|
#define STM32_GPT_TIM5_IRQ_PRIORITY 7
|
||||||
|
#define STM32_GPT_TIM8_IRQ_PRIORITY 7
|
||||||
|
|
||||||
|
/*
|
||||||
|
* ICU driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_ICU_USE_TIM1 FALSE
|
||||||
|
#define STM32_ICU_USE_TIM2 FALSE
|
||||||
|
#define STM32_ICU_USE_TIM3 FALSE
|
||||||
|
#define STM32_ICU_USE_TIM4 TRUE
|
||||||
|
#define STM32_ICU_USE_TIM5 FALSE
|
||||||
|
#define STM32_ICU_USE_TIM8 FALSE
|
||||||
|
#define STM32_ICU_TIM1_IRQ_PRIORITY 7
|
||||||
|
#define STM32_ICU_TIM2_IRQ_PRIORITY 7
|
||||||
|
#define STM32_ICU_TIM3_IRQ_PRIORITY 7
|
||||||
|
#define STM32_ICU_TIM4_IRQ_PRIORITY 7
|
||||||
|
#define STM32_ICU_TIM5_IRQ_PRIORITY 7
|
||||||
|
#define STM32_ICU_TIM8_IRQ_PRIORITY 7
|
||||||
|
|
||||||
|
/*
|
||||||
|
* PWM driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_PWM_USE_ADVANCED FALSE
|
||||||
|
#define STM32_PWM_USE_TIM1 FALSE
|
||||||
|
#define STM32_PWM_USE_TIM2 FALSE
|
||||||
|
#define STM32_PWM_USE_TIM3 FALSE
|
||||||
|
#define STM32_PWM_USE_TIM4 TRUE
|
||||||
|
#define STM32_PWM_USE_TIM5 FALSE
|
||||||
|
#define STM32_PWM_USE_TIM8 FALSE
|
||||||
|
#define STM32_PWM_TIM1_IRQ_PRIORITY 7
|
||||||
|
#define STM32_PWM_TIM2_IRQ_PRIORITY 7
|
||||||
|
#define STM32_PWM_TIM3_IRQ_PRIORITY 7
|
||||||
|
#define STM32_PWM_TIM4_IRQ_PRIORITY 7
|
||||||
|
#define STM32_PWM_TIM5_IRQ_PRIORITY 7
|
||||||
|
#define STM32_PWM_TIM8_IRQ_PRIORITY 7
|
||||||
|
|
||||||
|
/*
|
||||||
|
* SERIAL driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_SERIAL_USE_USART1 FALSE
|
||||||
|
#define STM32_SERIAL_USE_USART2 FALSE
|
||||||
|
#define STM32_SERIAL_USE_USART3 FALSE
|
||||||
|
#define STM32_SERIAL_USE_UART4 FALSE
|
||||||
|
#define STM32_SERIAL_USE_UART5 FALSE
|
||||||
|
#define STM32_SERIAL_USE_USART6 TRUE
|
||||||
|
#define STM32_SERIAL_USART1_PRIORITY 12
|
||||||
|
#define STM32_SERIAL_USART2_PRIORITY 12
|
||||||
|
#define STM32_SERIAL_USART3_PRIORITY 12
|
||||||
|
#define STM32_SERIAL_UART4_PRIORITY 12
|
||||||
|
#define STM32_SERIAL_UART5_PRIORITY 12
|
||||||
|
#define STM32_SERIAL_USART6_PRIORITY 12
|
||||||
|
|
||||||
|
/*
|
||||||
|
* SPI driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_SPI_USE_SPI1 TRUE
|
||||||
|
#define STM32_SPI_USE_SPI2 TRUE
|
||||||
|
#define STM32_SPI_USE_SPI3 FALSE
|
||||||
|
#define STM32_SPI_SPI1_RX_DMA_STREAM STM32_DMA_STREAM_ID(2, 0)
|
||||||
|
#define STM32_SPI_SPI1_TX_DMA_STREAM STM32_DMA_STREAM_ID(2, 3)
|
||||||
|
#define STM32_SPI_SPI2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
||||||
|
#define STM32_SPI_SPI2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
||||||
|
#define STM32_SPI_SPI3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 0)
|
||||||
|
#define STM32_SPI_SPI3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
||||||
|
#define STM32_SPI_SPI1_DMA_PRIORITY 1
|
||||||
|
#define STM32_SPI_SPI2_DMA_PRIORITY 1
|
||||||
|
#define STM32_SPI_SPI3_DMA_PRIORITY 1
|
||||||
|
#define STM32_SPI_SPI1_IRQ_PRIORITY 10
|
||||||
|
#define STM32_SPI_SPI2_IRQ_PRIORITY 10
|
||||||
|
#define STM32_SPI_SPI3_IRQ_PRIORITY 10
|
||||||
|
#define STM32_SPI_DMA_ERROR_HOOK(spip) chSysHalt()
|
||||||
|
|
||||||
|
/*
|
||||||
|
* UART driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_UART_USE_USART1 FALSE
|
||||||
|
#define STM32_UART_USE_USART2 TRUE
|
||||||
|
#define STM32_UART_USE_USART3 FALSE
|
||||||
|
#define STM32_UART_USART1_RX_DMA_STREAM STM32_DMA_STREAM_ID(2, 5)
|
||||||
|
#define STM32_UART_USART1_TX_DMA_STREAM STM32_DMA_STREAM_ID(2, 7)
|
||||||
|
#define STM32_UART_USART2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
||||||
|
#define STM32_UART_USART2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
||||||
|
#define STM32_UART_USART3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 1)
|
||||||
|
#define STM32_UART_USART3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
||||||
|
#define STM32_UART_USART1_IRQ_PRIORITY 12
|
||||||
|
#define STM32_UART_USART2_IRQ_PRIORITY 12
|
||||||
|
#define STM32_UART_USART3_IRQ_PRIORITY 12
|
||||||
|
#define STM32_UART_USART1_DMA_PRIORITY 0
|
||||||
|
#define STM32_UART_USART2_DMA_PRIORITY 0
|
||||||
|
#define STM32_UART_USART3_DMA_PRIORITY 0
|
||||||
|
#define STM32_UART_DMA_ERROR_HOOK(uartp) chSysHalt()
|
||||||
|
|
||||||
|
/*
|
||||||
|
* I2C driver system settings.
|
||||||
|
*/
|
||||||
|
#define STM32_I2C_USE_I2C1 TRUE
|
||||||
|
#define STM32_I2C_USE_I2C2 FALSE
|
||||||
|
#define STM32_I2C_USE_I2C3 FALSE
|
||||||
|
#define STM32_I2C_I2C1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 0)
|
||||||
|
#define STM32_I2C_I2C1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
||||||
|
#define STM32_I2C_I2C2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
||||||
|
#define STM32_I2C_I2C2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
||||||
|
#define STM32_I2C_I2C3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
||||||
|
#define STM32_I2C_I2C3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
||||||
|
#define STM32_I2C_I2C1_IRQ_PRIORITY 6
|
||||||
|
#define STM32_I2C_I2C2_IRQ_PRIORITY 6
|
||||||
|
#define STM32_I2C_I2C3_IRQ_PRIORITY 6
|
||||||
|
#define STM32_I2C_I2C1_DMA_PRIORITY 1
|
||||||
|
#define STM32_I2C_I2C2_DMA_PRIORITY 1
|
||||||
|
#define STM32_I2C_I2C3_DMA_PRIORITY 1
|
||||||
|
#define STM32_I2C_I2C1_DMA_ERROR_HOOK() chSysHalt()
|
||||||
|
#define STM32_I2C_I2C2_DMA_ERROR_HOOK() chSysHalt()
|
||||||
|
#define STM32_I2C_I2C3_DMA_ERROR_HOOK() chSysHalt()
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
*****************************************************************************
|
||||||
|
** ChibiOS/RT port for ARM-Cortex-M4 STM32F407. **
|
||||||
|
*****************************************************************************
|
||||||
|
|
||||||
|
** TARGET **
|
||||||
|
|
||||||
|
The demo runs on an Olimex STM32-P407 board.
|
||||||
|
|
||||||
|
** The Demo **
|
||||||
|
|
||||||
|
The demo currently just flashes a LED using a thread and serves HTTP requests
|
||||||
|
at address 192.168.1.20 on port 80.
|
||||||
|
The button activates che ChibiOS/RT test suite, output on SD6.
|
||||||
|
|
||||||
|
** Build Procedure **
|
||||||
|
|
||||||
|
The demo has been tested by using the free Codesourcery GCC-based toolchain
|
||||||
|
and YAGARTO.
|
||||||
|
Just modify the TRGT line in the makefile in order to use different GCC ports.
|
||||||
|
|
||||||
|
** Notes **
|
||||||
|
|
||||||
|
Some files used by the demo are not part of ChibiOS/RT but are copyright of
|
||||||
|
ST Microelectronics and are licensed under a different license.
|
||||||
|
Also note that not all the files present in the ST library are distribited
|
||||||
|
with ChibiOS/RT, you can find the whole library on the ST web site:
|
||||||
|
|
||||||
|
http://www.st.com
|
|
@ -0,0 +1,132 @@
|
||||||
|
/*
|
||||||
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
||||||
|
2011,2012 Giovanni Di Sirio.
|
||||||
|
|
||||||
|
This file is part of ChibiOS/RT.
|
||||||
|
|
||||||
|
ChibiOS/RT 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.
|
||||||
|
|
||||||
|
ChibiOS/RT 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
A special exception to the GPL can be applied should you wish to distribute
|
||||||
|
a combined work that includes ChibiOS/RT, without being obliged to provide
|
||||||
|
the source code for any proprietary components. See the file exception.txt
|
||||||
|
for full details of how and when the exception can be applied.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This file is a modified version of the lwIP web server demo. The original
|
||||||
|
* author is unknown because the file didn't contain any license information.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file web.c
|
||||||
|
* @brief HTTP server wrapper thread code.
|
||||||
|
* @addtogroup WEB_THREAD
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "ch.h"
|
||||||
|
|
||||||
|
#include "lwip/opt.h"
|
||||||
|
#include "lwip/arch.h"
|
||||||
|
#include "lwip/api.h"
|
||||||
|
|
||||||
|
#include "web.h"
|
||||||
|
|
||||||
|
#if LWIP_NETCONN
|
||||||
|
|
||||||
|
static const char http_html_hdr[] = "HTTP/1.1 200 OK\r\nContent-type: text/html\r\n\r\n";
|
||||||
|
static const char http_index_html[] = "<html><head><title>Congrats!</title></head><body><h1>Welcome to our lwIP HTTP server!</h1><p>This is a small test page.</body></html>";
|
||||||
|
|
||||||
|
static void http_server_serve(struct netconn *conn) {
|
||||||
|
struct netbuf *inbuf;
|
||||||
|
char *buf;
|
||||||
|
u16_t buflen;
|
||||||
|
err_t err;
|
||||||
|
|
||||||
|
/* Read the data from the port, blocking if nothing yet there.
|
||||||
|
We assume the request (the part we care about) is in one netbuf */
|
||||||
|
err = netconn_recv(conn, &inbuf);
|
||||||
|
|
||||||
|
if (err == ERR_OK) {
|
||||||
|
netbuf_data(inbuf, (void **)&buf, &buflen);
|
||||||
|
|
||||||
|
/* Is this an HTTP GET command? (only check the first 5 chars, since
|
||||||
|
there are other formats for GET, and we're keeping it very simple )*/
|
||||||
|
if (buflen>=5 &&
|
||||||
|
buf[0]=='G' &&
|
||||||
|
buf[1]=='E' &&
|
||||||
|
buf[2]=='T' &&
|
||||||
|
buf[3]==' ' &&
|
||||||
|
buf[4]=='/' ) {
|
||||||
|
|
||||||
|
/* Send the HTML header
|
||||||
|
* subtract 1 from the size, since we dont send the \0 in the string
|
||||||
|
* NETCONN_NOCOPY: our data is const static, so no need to copy it
|
||||||
|
*/
|
||||||
|
netconn_write(conn, http_html_hdr, sizeof(http_html_hdr)-1, NETCONN_NOCOPY);
|
||||||
|
|
||||||
|
/* Send our HTML page */
|
||||||
|
netconn_write(conn, http_index_html, sizeof(http_index_html)-1, NETCONN_NOCOPY);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* Close the connection (server closes in HTTP) */
|
||||||
|
netconn_close(conn);
|
||||||
|
|
||||||
|
/* Delete the buffer (netconn_recv gives us ownership,
|
||||||
|
so we have to make sure to deallocate the buffer) */
|
||||||
|
netbuf_delete(inbuf);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stack area for the http thread.
|
||||||
|
*/
|
||||||
|
WORKING_AREA(wa_http_server, WEB_THREAD_STACK_SIZE);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* HTTP server thread.
|
||||||
|
*/
|
||||||
|
msg_t http_server(void *p) {
|
||||||
|
struct netconn *conn, *newconn;
|
||||||
|
err_t err;
|
||||||
|
|
||||||
|
(void)p;
|
||||||
|
|
||||||
|
/* Create a new TCP connection handle */
|
||||||
|
conn = netconn_new(NETCONN_TCP);
|
||||||
|
LWIP_ERROR("http_server: invalid conn", (conn != NULL), return RDY_RESET;);
|
||||||
|
|
||||||
|
/* Bind to port 80 (HTTP) with default IP address */
|
||||||
|
netconn_bind(conn, NULL, WEB_THREAD_PORT);
|
||||||
|
|
||||||
|
/* Put the connection into LISTEN state */
|
||||||
|
netconn_listen(conn);
|
||||||
|
|
||||||
|
/* Goes to the final priority after initialization.*/
|
||||||
|
chThdSetPriority(WEB_THREAD_PRIORITY);
|
||||||
|
|
||||||
|
while(1) {
|
||||||
|
err = netconn_accept(conn, &newconn);
|
||||||
|
if (err != ERR_OK)
|
||||||
|
continue;
|
||||||
|
http_server_serve(newconn);
|
||||||
|
netconn_delete(newconn);
|
||||||
|
}
|
||||||
|
return RDY_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* LWIP_NETCONN */
|
||||||
|
|
||||||
|
/** @} */
|
|
@ -0,0 +1,62 @@
|
||||||
|
/*
|
||||||
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
||||||
|
2011,2012 Giovanni Di Sirio.
|
||||||
|
|
||||||
|
This file is part of ChibiOS/RT.
|
||||||
|
|
||||||
|
ChibiOS/RT 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.
|
||||||
|
|
||||||
|
ChibiOS/RT 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
A special exception to the GPL can be applied should you wish to distribute
|
||||||
|
a combined work that includes ChibiOS/RT, without being obliged to provide
|
||||||
|
the source code for any proprietary components. See the file exception.txt
|
||||||
|
for full details of how and when the exception can be applied.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file web.h
|
||||||
|
* @brief HTTP server wrapper thread macros and structures.
|
||||||
|
* @addtogroup WEB_THREAD
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _WEB_H_
|
||||||
|
#define _WEB_H_
|
||||||
|
|
||||||
|
#ifndef WEB_THREAD_STACK_SIZE
|
||||||
|
#define WEB_THREAD_STACK_SIZE 1024
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef WEB_THREAD_PORT
|
||||||
|
#define WEB_THREAD_PORT 80
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef WEB_THREAD_PRIORITY
|
||||||
|
#define WEB_THREAD_PRIORITY (LOWPRIO + 2)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
extern WORKING_AREA(wa_http_server, WEB_THREAD_STACK_SIZE);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
msg_t http_server(void *p);
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* _WEB_H_ */
|
||||||
|
|
||||||
|
/** @} */
|
|
@ -64,7 +64,7 @@
|
||||||
/**
|
/**
|
||||||
* @brief Ethernet driver 1.
|
* @brief Ethernet driver 1.
|
||||||
*/
|
*/
|
||||||
MACDriver ETH1;
|
MACDriver ETHD1;
|
||||||
|
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
/* Driver local variables. */
|
/* Driver local variables. */
|
||||||
|
@ -107,9 +107,9 @@ static void serve_interrupt(void) {
|
||||||
if ((isr & AT91C_EMAC_RCOMP) || (rsr & RSR_BITS)) {
|
if ((isr & AT91C_EMAC_RCOMP) || (rsr & RSR_BITS)) {
|
||||||
if (rsr & AT91C_EMAC_REC) {
|
if (rsr & AT91C_EMAC_REC) {
|
||||||
chSysLockFromIsr();
|
chSysLockFromIsr();
|
||||||
chSemResetI(Ð1.rdsem, 0);
|
chSemResetI(ÐD1.rdsem, 0);
|
||||||
#if MAC_USE_EVENTS
|
#if MAC_USE_EVENTS
|
||||||
chEvtBroadcastI(Ð1.rdevent);
|
chEvtBroadcastI(ÐD1.rdevent);
|
||||||
#endif
|
#endif
|
||||||
chSysUnlockFromIsr();
|
chSysUnlockFromIsr();
|
||||||
}
|
}
|
||||||
|
@ -119,7 +119,7 @@ static void serve_interrupt(void) {
|
||||||
if ((isr & AT91C_EMAC_TCOMP) || (tsr & TSR_BITS)) {
|
if ((isr & AT91C_EMAC_TCOMP) || (tsr & TSR_BITS)) {
|
||||||
if (tsr & AT91C_EMAC_COMP) {
|
if (tsr & AT91C_EMAC_COMP) {
|
||||||
chSysLockFromIsr();
|
chSysLockFromIsr();
|
||||||
chSemResetI(Ð1.tdsem, 0);
|
chSemResetI(ÐD1.tdsem, 0);
|
||||||
chSysUnlockFromIsr();
|
chSysUnlockFromIsr();
|
||||||
}
|
}
|
||||||
AT91C_BASE_EMAC->EMAC_TSR = TSR_BITS;
|
AT91C_BASE_EMAC->EMAC_TSR = TSR_BITS;
|
||||||
|
@ -184,12 +184,12 @@ CH_IRQ_HANDLER(irq_handler) {
|
||||||
void mac_lld_init(void) {
|
void mac_lld_init(void) {
|
||||||
|
|
||||||
miiInit();
|
miiInit();
|
||||||
macObjectInit(Ð1);
|
macObjectInit(ÐD1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Associated PHY initialization.
|
* Associated PHY initialization.
|
||||||
*/
|
*/
|
||||||
miiReset(Ð1);
|
miiReset(ÐD1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* EMAC pins setup. Note, PB18 is not included because it is
|
* EMAC pins setup. Note, PB18 is not included because it is
|
||||||
|
@ -255,8 +255,8 @@ void mac_lld_start(MACDriver *macp) {
|
||||||
* PHY device identification.
|
* PHY device identification.
|
||||||
*/
|
*/
|
||||||
AT91C_BASE_EMAC->EMAC_NCR |= AT91C_EMAC_MPE;
|
AT91C_BASE_EMAC->EMAC_NCR |= AT91C_EMAC_MPE;
|
||||||
if ((miiGet(Ð1, MII_PHYSID1) != (PHY_ID >> 16)) ||
|
if ((miiGet(ÐD1, MII_PHYSID1) != (PHY_ID >> 16)) ||
|
||||||
((miiGet(Ð1, MII_PHYSID2) & 0xFFF0) != (PHY_ID & 0xFFF0)))
|
((miiGet(ÐD1, MII_PHYSID2) & 0xFFF0) != (PHY_ID & 0xFFF0)))
|
||||||
chSysHalt();
|
chSysHalt();
|
||||||
AT91C_BASE_EMAC->EMAC_NCR &= ~AT91C_EMAC_MPE;
|
AT91C_BASE_EMAC->EMAC_NCR &= ~AT91C_EMAC_MPE;
|
||||||
|
|
||||||
|
@ -295,7 +295,7 @@ void mac_lld_stop(MACDriver *macp) {
|
||||||
*
|
*
|
||||||
* @notapi
|
* @notapi
|
||||||
*/
|
*/
|
||||||
msg_t max_lld_get_transmit_descriptor(MACDriver *macp,
|
msg_t mac_lld_get_transmit_descriptor(MACDriver *macp,
|
||||||
MACTransmitDescriptor *tdp) {
|
MACTransmitDescriptor *tdp) {
|
||||||
EMACDescriptor *edp;
|
EMACDescriptor *edp;
|
||||||
|
|
||||||
|
@ -385,7 +385,7 @@ void mac_lld_release_transmit_descriptor(MACTransmitDescriptor *tdp) {
|
||||||
*
|
*
|
||||||
* @notapi
|
* @notapi
|
||||||
*/
|
*/
|
||||||
msg_t max_lld_get_receive_descriptor(MACDriver *macp,
|
msg_t mac_lld_get_receive_descriptor(MACDriver *macp,
|
||||||
MACReceiveDescriptor *rdp) {
|
MACReceiveDescriptor *rdp) {
|
||||||
unsigned n;
|
unsigned n;
|
||||||
EMACDescriptor *edp;
|
EMACDescriptor *edp;
|
||||||
|
|
|
@ -225,7 +225,7 @@ typedef struct {
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
|
|
||||||
#if !defined(__DOXYGEN__)
|
#if !defined(__DOXYGEN__)
|
||||||
extern MACDriver ETH1;
|
extern MACDriver ETHD1;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
@ -234,13 +234,13 @@ extern "C" {
|
||||||
void mac_lld_init(void);
|
void mac_lld_init(void);
|
||||||
void mac_lld_start(MACDriver *macp);
|
void mac_lld_start(MACDriver *macp);
|
||||||
void mac_lld_stop(MACDriver *macp);
|
void mac_lld_stop(MACDriver *macp);
|
||||||
msg_t max_lld_get_transmit_descriptor(MACDriver *macp,
|
msg_t mac_lld_get_transmit_descriptor(MACDriver *macp,
|
||||||
MACTransmitDescriptor *tdp);
|
MACTransmitDescriptor *tdp);
|
||||||
size_t mac_lld_write_transmit_descriptor(MACTransmitDescriptor *tdp,
|
size_t mac_lld_write_transmit_descriptor(MACTransmitDescriptor *tdp,
|
||||||
uint8_t *buf,
|
uint8_t *buf,
|
||||||
size_t size);
|
size_t size);
|
||||||
void mac_lld_release_transmit_descriptor(MACTransmitDescriptor *tdp);
|
void mac_lld_release_transmit_descriptor(MACTransmitDescriptor *tdp);
|
||||||
msg_t max_lld_get_receive_descriptor(MACDriver *macp,
|
msg_t mac_lld_get_receive_descriptor(MACDriver *macp,
|
||||||
MACReceiveDescriptor *rdp);
|
MACReceiveDescriptor *rdp);
|
||||||
size_t mac_lld_read_receive_descriptor(MACReceiveDescriptor *rdp,
|
size_t mac_lld_read_receive_descriptor(MACReceiveDescriptor *rdp,
|
||||||
uint8_t *buf,
|
uint8_t *buf,
|
||||||
|
|
|
@ -391,7 +391,7 @@ void mac_lld_stop(MACDriver *macp) {
|
||||||
*
|
*
|
||||||
* @notapi
|
* @notapi
|
||||||
*/
|
*/
|
||||||
msg_t max_lld_get_transmit_descriptor(MACDriver *macp,
|
msg_t mac_lld_get_transmit_descriptor(MACDriver *macp,
|
||||||
MACTransmitDescriptor *tdp) {
|
MACTransmitDescriptor *tdp) {
|
||||||
stm32_eth_tx_descriptor_t *tdes;
|
stm32_eth_tx_descriptor_t *tdes;
|
||||||
|
|
||||||
|
@ -500,7 +500,7 @@ void mac_lld_release_transmit_descriptor(MACTransmitDescriptor *tdp) {
|
||||||
*
|
*
|
||||||
* @notapi
|
* @notapi
|
||||||
*/
|
*/
|
||||||
msg_t max_lld_get_receive_descriptor(MACDriver *macp,
|
msg_t mac_lld_get_receive_descriptor(MACDriver *macp,
|
||||||
MACReceiveDescriptor *rdp) {
|
MACReceiveDescriptor *rdp) {
|
||||||
stm32_eth_rx_descriptor_t *rdes;
|
stm32_eth_rx_descriptor_t *rdes;
|
||||||
|
|
||||||
|
@ -512,12 +512,12 @@ msg_t max_lld_get_receive_descriptor(MACDriver *macp,
|
||||||
/* Iterates through received frames until a valid one is found, invalid
|
/* Iterates through received frames until a valid one is found, invalid
|
||||||
frames are discarded.*/
|
frames are discarded.*/
|
||||||
while (!(rdes->rdes0 & STM32_RDES0_OWN)) {
|
while (!(rdes->rdes0 & STM32_RDES0_OWN)) {
|
||||||
if (!(rdes->rdes0 & (STM32_RDES0_AFM | STM32_RDES0_ES
|
if (!(rdes->rdes0 & (STM32_RDES0_AFM | STM32_RDES0_ES))
|
||||||
#if STM32_IP_CHECKSUM_OFFLOAD
|
#if STM32_IP_CHECKSUM_OFFLOAD
|
||||||
| STM32_RDES0_IPHCE | STM32_RDES0_PCE
|
&& !(rdes->rdes0 & STM32_RDES0_FT & (STM32_RDES0_IPHCE |
|
||||||
|
STM32_RDES0_PCE))
|
||||||
#endif
|
#endif
|
||||||
)) && (rdes->rdes0 & STM32_RDES0_FS) &&
|
&& (rdes->rdes0 & STM32_RDES0_FS) && (rdes->rdes0 & STM32_RDES0_LS)) {
|
||||||
(rdes->rdes0 & STM32_RDES0_LS)) {
|
|
||||||
/* Found a valid one.*/
|
/* Found a valid one.*/
|
||||||
rdp->offset = 0;
|
rdp->offset = 0;
|
||||||
rdp->size = ((rdes->rdes0 & STM32_RDES0_FL_MASK) >> 16) - 4;
|
rdp->size = ((rdes->rdes0 & STM32_RDES0_FL_MASK) >> 16) - 4;
|
||||||
|
|
|
@ -145,7 +145,7 @@
|
||||||
* @brief Maximum supported frame size.
|
* @brief Maximum supported frame size.
|
||||||
*/
|
*/
|
||||||
#if !defined(MAC_BUFFERS_SIZE) || defined(__DOXYGEN__)
|
#if !defined(MAC_BUFFERS_SIZE) || defined(__DOXYGEN__)
|
||||||
#define STM32_MAC_BUFFERS_SIZE 1518
|
#define STM32_MAC_BUFFERS_SIZE 1522
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -330,13 +330,13 @@ extern "C" {
|
||||||
void mac_lld_init(void);
|
void mac_lld_init(void);
|
||||||
void mac_lld_start(MACDriver *macp);
|
void mac_lld_start(MACDriver *macp);
|
||||||
void mac_lld_stop(MACDriver *macp);
|
void mac_lld_stop(MACDriver *macp);
|
||||||
msg_t max_lld_get_transmit_descriptor(MACDriver *macp,
|
msg_t mac_lld_get_transmit_descriptor(MACDriver *macp,
|
||||||
MACTransmitDescriptor *tdp);
|
MACTransmitDescriptor *tdp);
|
||||||
size_t mac_lld_write_transmit_descriptor(MACTransmitDescriptor *tdp,
|
size_t mac_lld_write_transmit_descriptor(MACTransmitDescriptor *tdp,
|
||||||
uint8_t *buf,
|
uint8_t *buf,
|
||||||
size_t size);
|
size_t size);
|
||||||
void mac_lld_release_transmit_descriptor(MACTransmitDescriptor *tdp);
|
void mac_lld_release_transmit_descriptor(MACTransmitDescriptor *tdp);
|
||||||
msg_t max_lld_get_receive_descriptor(MACDriver *macp,
|
msg_t mac_lld_get_receive_descriptor(MACDriver *macp,
|
||||||
MACReceiveDescriptor *rdp);
|
MACReceiveDescriptor *rdp);
|
||||||
size_t mac_lld_read_receive_descriptor(MACReceiveDescriptor *rdp,
|
size_t mac_lld_read_receive_descriptor(MACReceiveDescriptor *rdp,
|
||||||
uint8_t *buf,
|
uint8_t *buf,
|
||||||
|
|
|
@ -7,6 +7,7 @@ PLATFORMSRC = ${CHIBIOS}/os/hal/platforms/STM32F1xx/stm32_dma.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/gpt_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/gpt_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/i2c_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/i2c_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/icu_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/icu_lld.c \
|
||||||
|
${CHIBIOS}/os/hal/platforms/STM32/mac_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/pwm_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/pwm_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/serial_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/serial_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/sdc_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/sdc_lld.c \
|
||||||
|
|
|
@ -160,7 +160,7 @@ msg_t macWaitTransmitDescriptor(MACDriver *macp,
|
||||||
chDbgAssert(macp->state == MAC_ACTIVE, "macWaitTransmitDescriptor(), #1",
|
chDbgAssert(macp->state == MAC_ACTIVE, "macWaitTransmitDescriptor(), #1",
|
||||||
"not active");
|
"not active");
|
||||||
|
|
||||||
while (((msg = max_lld_get_transmit_descriptor(macp, tdp)) != RDY_OK) &&
|
while (((msg = mac_lld_get_transmit_descriptor(macp, tdp)) != RDY_OK) &&
|
||||||
(time > 0)) {
|
(time > 0)) {
|
||||||
chSysLock();
|
chSysLock();
|
||||||
systime_t now = chTimeNow();
|
systime_t now = chTimeNow();
|
||||||
|
@ -218,7 +218,7 @@ msg_t macWaitReceiveDescriptor(MACDriver *macp,
|
||||||
chDbgAssert(macp->state == MAC_ACTIVE, "macWaitReceiveDescriptor(), #1",
|
chDbgAssert(macp->state == MAC_ACTIVE, "macWaitReceiveDescriptor(), #1",
|
||||||
"not active");
|
"not active");
|
||||||
|
|
||||||
while (((msg = max_lld_get_receive_descriptor(macp, rdp)) != RDY_OK) &&
|
while (((msg = mac_lld_get_receive_descriptor(macp, rdp)) != RDY_OK) &&
|
||||||
(time > 0)) {
|
(time > 0)) {
|
||||||
chSysLock();
|
chSysLock();
|
||||||
systime_t now = chTimeNow();
|
systime_t now = chTimeNow();
|
||||||
|
|
|
@ -111,7 +111,7 @@ void mac_lld_stop(MACDriver *macp) {
|
||||||
*
|
*
|
||||||
* @notapi
|
* @notapi
|
||||||
*/
|
*/
|
||||||
msg_t max_lld_get_transmit_descriptor(MACDriver *macp,
|
msg_t mac_lld_get_transmit_descriptor(MACDriver *macp,
|
||||||
MACTransmitDescriptor *tdp) {
|
MACTransmitDescriptor *tdp) {
|
||||||
|
|
||||||
return RDY_OK;
|
return RDY_OK;
|
||||||
|
@ -161,7 +161,7 @@ void mac_lld_release_transmit_descriptor(MACTransmitDescriptor *tdp) {
|
||||||
*
|
*
|
||||||
* @notapi
|
* @notapi
|
||||||
*/
|
*/
|
||||||
msg_t max_lld_get_receive_descriptor(MACDriver *macp,
|
msg_t mac_lld_get_receive_descriptor(MACDriver *macp,
|
||||||
MACReceiveDescriptor *rdp) {
|
MACReceiveDescriptor *rdp) {
|
||||||
|
|
||||||
return RDY_TIMEOUT;
|
return RDY_TIMEOUT;
|
||||||
|
|
|
@ -142,13 +142,13 @@ extern "C" {
|
||||||
void mac_lld_init(void);
|
void mac_lld_init(void);
|
||||||
void mac_lld_start(MACDriver *macp);
|
void mac_lld_start(MACDriver *macp);
|
||||||
void mac_lld_stop(MACDriver *macp);
|
void mac_lld_stop(MACDriver *macp);
|
||||||
msg_t max_lld_get_transmit_descriptor(MACDriver *macp,
|
msg_t mac_lld_get_transmit_descriptor(MACDriver *macp,
|
||||||
MACTransmitDescriptor *tdp);
|
MACTransmitDescriptor *tdp);
|
||||||
size_t mac_lld_write_transmit_descriptor(MACTransmitDescriptor *tdp,
|
size_t mac_lld_write_transmit_descriptor(MACTransmitDescriptor *tdp,
|
||||||
uint8_t *buf,
|
uint8_t *buf,
|
||||||
size_t size);
|
size_t size);
|
||||||
void mac_lld_release_transmit_descriptor(MACTransmitDescriptor *tdp);
|
void mac_lld_release_transmit_descriptor(MACTransmitDescriptor *tdp);
|
||||||
msg_t max_lld_get_receive_descriptor(MACDriver *macp,
|
msg_t mac_lld_get_receive_descriptor(MACDriver *macp,
|
||||||
MACReceiveDescriptor *rdp);
|
MACReceiveDescriptor *rdp);
|
||||||
size_t mac_lld_read_receive_descriptor(MACReceiveDescriptor *rdp,
|
size_t mac_lld_read_receive_descriptor(MACReceiveDescriptor *rdp,
|
||||||
uint8_t *buf,
|
uint8_t *buf,
|
||||||
|
|
|
@ -107,7 +107,10 @@
|
||||||
- FIX: Fixed ADC maximum frequency limit in STM32F2/F4 ADC drivers (bug
|
- FIX: Fixed ADC maximum frequency limit in STM32F2/F4 ADC drivers (bug
|
||||||
3484947).
|
3484947).
|
||||||
- FIX: Fixed various minor documentation errors (bug 3484942).
|
- FIX: Fixed various minor documentation errors (bug 3484942).
|
||||||
- NEW: STM32 Ethernet driver added.
|
- NEW: STM32 Ethernet driver completed. Added STM32F107 and STM32F407
|
||||||
|
lwIP demos.
|
||||||
|
- NEW: lwIP related code is not centralized into a single place, no need to
|
||||||
|
duplicate the code in each application or demo.
|
||||||
- NEW: Updated the MSP port to work with the latest MSPGCC compiler (4.6.3
|
- NEW: Updated the MSP port to work with the latest MSPGCC compiler (4.6.3
|
||||||
LTS 20120406 unpatched), now the old MSPGCC 3.2.3 is no more supported.
|
LTS 20120406 unpatched), now the old MSPGCC 3.2.3 is no more supported.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue