2020-02-07 13:53:40 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* boards/arm/s32k1xx/rddrone-uavcan146/src/rddrone-uavcan146.h
|
|
|
|
*
|
2021-03-17 18:14:12 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2020-02-07 13:53:40 +01:00
|
|
|
*
|
2021-03-17 18:14:12 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2020-02-07 13:53:40 +01:00
|
|
|
*
|
2021-03-17 18:14:12 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2020-02-07 13:53:40 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __BOARDS_ARM_S32K1XX_RDDRONE_UAVCAN146_SRC_RDDRONE_UAVCAN146_H
|
|
|
|
#define __BOARDS_ARM_S32K1XX_RDDRONE_UAVCAN146_SRC_RDDRONE_UAVCAN146_H
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#include <nuttx/compiler.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "hardware/s32k1xx_pinmux.h"
|
|
|
|
#include "s32k1xx_periphclocks.h"
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* Configuration ************************************************************/
|
|
|
|
|
|
|
|
/* RDDRONE-UAVCAN146 GPIOs **************************************************/
|
|
|
|
|
|
|
|
/* LEDs. The RDDRONE-UAVCAN146 has one RGB LED:
|
|
|
|
*
|
|
|
|
* RedLED PTD15 (FTM0 CH0)
|
|
|
|
* GreenLED PTD16 (FTM0 CH1)
|
|
|
|
* BlueLED PTD0 (FTM0 CH2)
|
|
|
|
*
|
|
|
|
* An output of '1' illuminates the LED.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define GPIO_LED_R (PIN_PTD15 | GPIO_LOWDRIVE | GPIO_OUTPUT_ZERO)
|
|
|
|
#define GPIO_LED_G (PIN_PTD16 | GPIO_LOWDRIVE | GPIO_OUTPUT_ZERO)
|
|
|
|
#define GPIO_LED_B (PIN_PTD0 | GPIO_LOWDRIVE | GPIO_OUTPUT_ZERO)
|
|
|
|
|
2020-06-15 10:24:23 +02:00
|
|
|
/* Buttons. The RDDRONE-UAVCAN146 supports one button:
|
2020-02-07 13:53:40 +01:00
|
|
|
*
|
2020-06-15 10:24:23 +02:00
|
|
|
* SW3 PTC14
|
2020-02-07 13:53:40 +01:00
|
|
|
*/
|
|
|
|
|
2020-06-15 10:24:23 +02:00
|
|
|
#define GPIO_SW3 (PIN_PTC14 | PIN_INT_BOTH)
|
2020-02-07 13:53:40 +01:00
|
|
|
|
|
|
|
/* SPI chip selects */
|
|
|
|
|
|
|
|
/* SE050 Enable */
|
|
|
|
|
|
|
|
#define GPIO_SE050_EN (PIN_PTA6 | GPIO_LOWDRIVE)
|
|
|
|
|
|
|
|
/* Count of peripheral clock user configurations */
|
|
|
|
|
2020-06-15 10:24:23 +02:00
|
|
|
#define NUM_OF_PERIPHERAL_CLOCKS_0 12
|
2020-02-07 13:53:40 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
|
|
|
/* User peripheral configuration structure 0 */
|
|
|
|
|
|
|
|
extern const struct peripheral_clock_config_s g_peripheral_clockconfig0[];
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: s32k1xx_bringup
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Perform architecture-specific initialization
|
|
|
|
*
|
|
|
|
* CONFIG_BOARD_LATE_INITIALIZE=y :
|
|
|
|
* Called from board_late_initialize().
|
|
|
|
*
|
2021-08-01 09:00:54 +02:00
|
|
|
* CONFIG_BOARD_LATE_INITIALIZE=y && CONFIG_BOARDCTL=y :
|
2020-02-07 13:53:40 +01:00
|
|
|
* Called from the NSH library
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int s32k1xx_bringup(void);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: s32k1xx_spidev_initialize
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Called to configure SPI chip select GPIO pins for the RDDRONE-UAVCAN146
|
|
|
|
* board.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_S32K1XX_LPSPI
|
|
|
|
void s32k1xx_spidev_initialize(void);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
#endif /* __BOARDS_ARM_S32K1XX_RDDRONE_UAVCAN146_SRC_RDDRONE_UAVCAN146_H */
|