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

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

#include <stm32f4xx.h>
+ Include dependency graph for carme_io1.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define CARME_IO1_BUTTON0_PORT   GPIOC
 
#define CARME_IO1_BUTTON1_PORT   GPIOB
 
#define CARME_IO1_BUTTON2_PORT   GPIOB
 
#define CARME_IO1_BUTTON3_PORT   GPIOI
 
#define CARME_IO1_BUTTON0_PIN   GPIO_Pin_7
 
#define CARME_IO1_BUTTON1_PIN   GPIO_Pin_15
 
#define CARME_IO1_BUTTON2_PIN   GPIO_Pin_14
 
#define CARME_IO1_BUTTON3_PIN   GPIO_Pin_0
 

Typedefs

typedef enum _CARME_IO1_PIO_PORT CARME_IO1_PIO_PORT
 This enum contains all available Ports of the PIO device.
 
typedef enum _CARME_IO1_PIO_CONTROL CARME_IO1_PIO_CONTROL
 This contains all possible commands for the PIO device.
 

Enumerations

enum  _CARME_IO1_PIO_PORT { CARME_IO1_PORT_A, CARME_IO1_PORT_C, CARME_IO1_PORT_C_L, CARME_IO1_PORT_C_H }
 This enum contains all available Ports of the PIO device. More...
 
enum  _CARME_IO1_PIO_CONTROL {
  CARME_IO1_PORT_A_IN = 0x01, CARME_IO1_PORT_A_OUT = 0x02, CARME_IO1_PORT_C_IN = 0x04, CARME_IO1_PORT_C_OUT = 0x08,
  CARME_IO1_PORT_C_L_IN = 0x10, CARME_IO1_PORT_C_L_OUT = 0x20, CARME_IO1_PORT_C_H_IN = 0x40, CARME_IO1_PORT_C_H_OUT = 0x80
}
 This contains all possible commands for the PIO device. More...
 

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...
 

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.h.