CARME-M4 BSP  V1.5
carme_io1.c File Reference

CARME IO1 extension module board support package. More...

#include <stm32f4xx.h>
#include <carme.h>
#include <carme_io1.h>
+ Include dependency graph for carme_io1.c:

Go to the source code of this file.

Functions

void CARME_IO1_Init (void)
 CARME IO1 initialization. More...
 
void CARME_IO1_LED_Set (uint8_t write, uint8_t mask)
 Set a byte to the CARME IO1 LEDs. More...
 
void CARME_IO1_LED_Get (uint8_t *pStatus)
 Get the CARME IO1 LED status. More...
 
void CARME_IO1_SWITCH_Get (uint8_t *pStatus)
 Get the CARME IO1 switch status. More...
 
void CARME_IO1_BUTTON_Get (uint8_t *pStatus)
 Get the CARME IO1 button status. More...
 
void CARME_IO1_BUTTON_Interrupt (FunctionalState state)
 Set the CARME IO1 interrupt enable/disable. More...
 
void CARME_IO1_PIO_Write (CARME_IO1_PIO_PORT port, uint8_t data)
 Sets the PIOs in order with the input-value. More...
 
void CARME_IO1_PIO_Read (CARME_IO1_PIO_PORT port, uint8_t *data)
 Read the PIO value. More...
 
void CARME_IO1_PIO_Set (CARME_IO1_PIO_PORT port, uint8_t pio)
 Sets the PIO on the position of the input value.
For example the input value 0x4 sets the pin number 4. The other pins are not affected. More...
 
void CARME_IO1_PIO_Clear (CARME_IO1_PIO_PORT port, uint8_t pio)
 Clears the PIO on the position of the input value.
For example the input value 0x4 clears the pin number 4. The other pins are not affected. More...
 
void CARME_IO1_PIO_Control (CARME_IO1_PIO_CONTROL cmd)
 Sets the PIO Control Register. This function must be called to change the Port direction. More...
 

Variables

static __IO uint8_t * LED_Port = (__IO uint8_t *) (FSMC_CARME_EXTENSION1_BASE + 0x200)
 Pointer to the register which controls the CARME IO1 LEDs.
 
static __IO uint8_t * Switch_Port = (__IO uint8_t *) (FSMC_CARME_EXTENSION1_BASE + 0x400)
 Pointer to the register which controls the CARME IO1 Switchs.
 
static __IO uint8_t * PIO_PortA = (__IO uint8_t *) (FSMC_CARME_EXTENSION1_BASE + 0x800)
 Pointer to the register which controls the CARME IO1 PIO PortA Value.
 
static __IO uint8_t * PIO_PortC = (__IO uint8_t *) (FSMC_CARME_EXTENSION1_BASE + 0x810)
 Pointer to the register which controls the CARME IO1 PIO PortB Value. More...
 
static __IO uint8_t * PIO_Control = (__IO uint8_t *) (FSMC_CARME_EXTENSION1_BASE + 0x818)
 Pointer to the register which controls the CARME IO1 PIO Control Value.
 
static CARME_Port_Pin_t CARME_IO1_Port_Pin []
 CARME IO1 Port and Pin association. More...
 
static __IO uint8_t LED_Value = 0x00
 CARME IO1 current led value.
 
static __IO uint8_t PortA_Value = 0x00
 CARME IO1 current PortA value.
 
static __IO uint8_t PortC_Value = 0x00
 CARME IO1 current PortC value.
 

Detailed Description

CARME IO1 extension module board support package.

Version
1.0
Date
2012-12-19
Author
rct1

This software can be used by students and other personal of the Bern University of Applied Sciences under the terms of the MIT license. For other persons this software is under the terms of the GNU General Public License version 2.

Copyright © 2013, Bern University of Applied Sciences. All rights reserved.

MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

GNU GENERAL PUBLIC LICENSE

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

Definition in file carme_io1.c.