kopia lustrzana https://github.com/OpenRTX/OpenRTX
152 wiersze
4.3 KiB
C
152 wiersze
4.3 KiB
C
/***************************************************************************
|
|
* Copyright (C) 2020 by Federico Amedeo Izzo IU2NUO, *
|
|
* Niccolò Izzo IU2KIN *
|
|
* Silvano Seva IU2KWO *
|
|
* *
|
|
* 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 3 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, see <http://www.gnu.org/licenses/> *
|
|
***************************************************************************/
|
|
|
|
#ifndef HWCONFIG_H
|
|
#define HWCONFIG_H
|
|
|
|
#include <stm32f4xx.h>
|
|
|
|
/* Device has a working real time clock */
|
|
#define HAS_RTC
|
|
|
|
/* Device supports an optional GPS chip */
|
|
#define HAS_GPS
|
|
|
|
/* Device has a channel selection knob */
|
|
#define HAS_ABSOLUTE_KNOB
|
|
|
|
/* Supported radio bands */
|
|
#define BAND_VHF
|
|
#define BAND_UHF
|
|
|
|
/* Band limits in Hz */
|
|
#define FREQ_LIMIT_VHF_LO 136000000
|
|
#define FREQ_LIMIT_VHF_HI 174000000
|
|
#define FREQ_LIMIT_UHF_LO 400000000
|
|
#define FREQ_LIMIT_UHF_HI 480000000
|
|
|
|
/* Screen dimensions */
|
|
#define SCREEN_WIDTH 160
|
|
#define SCREEN_HEIGHT 128
|
|
|
|
/* Screen pixel format */
|
|
#define PIX_FMT_RGB565
|
|
|
|
/* Battery type */
|
|
#define BAT_LIPO_2S
|
|
|
|
/* Power keep switch */
|
|
#define PWR_SW GPIOA,7
|
|
|
|
/* Display */
|
|
#define LCD_D0 GPIOD,14
|
|
#define LCD_D1 GPIOD,15
|
|
#define LCD_D2 GPIOD,0
|
|
#define LCD_D3 GPIOD,1
|
|
#define LCD_D4 GPIOE,7
|
|
#define LCD_D5 GPIOE,8
|
|
#define LCD_D6 GPIOE,9
|
|
#define LCD_D7 GPIOE,10
|
|
#define LCD_WR GPIOD,5
|
|
#define LCD_RD GPIOD,4
|
|
#define LCD_CS GPIOD,6
|
|
#define LCD_RS GPIOD,12
|
|
#define LCD_RST GPIOD,13
|
|
#define LCD_BKLIGHT GPIOC,6
|
|
|
|
/* Signalling LEDs */
|
|
#define GREEN_LED GPIOE,0
|
|
#define RED_LED GPIOE,1
|
|
|
|
/* Analog inputs */
|
|
#define AIN_VOLUME GPIOA,0
|
|
#define AIN_VBAT GPIOA,1
|
|
#define AIN_MIC GPIOA,3
|
|
#define AIN_RSSI GPIOB,0
|
|
|
|
/* Channel selection rotary encoder */
|
|
#define CH_SELECTOR_0 GPIOE,14
|
|
#define CH_SELECTOR_1 GPIOE,15
|
|
#define CH_SELECTOR_2 GPIOB,10
|
|
#define CH_SELECTOR_3 GPIOB,11
|
|
|
|
/* Push-to-talk switch */
|
|
#define PTT_SW GPIOE,11
|
|
|
|
/*
|
|
* Keyboard. Here we define only rows, since coloumn lines are the same as
|
|
* LCD_Dx. See also: https://www.qsl.net/dl4yhf/RT3/md380_hw.html#keyboard
|
|
*
|
|
* "Monitor" and "Function" buttons, on the other hand, are connected to
|
|
* keyboard row 3 and on LCD_D7 and LCD_D6. See also the schematic.
|
|
*/
|
|
#define KB_ROW1 GPIOA,6 /* K1 */
|
|
#define KB_ROW2 GPIOD,2 /* K2 */
|
|
#define KB_ROW3 GPIOD,3 /* K3 */
|
|
#define MONI_SW LCD_D7
|
|
#define FUNC_SW LCD_D6
|
|
|
|
/* Tone generator */
|
|
#define CTCSS_OUT GPIOC,7 /* System "beep" */
|
|
#define BEEP_OUT GPIOC,8 /* CTCSS tone */
|
|
|
|
/* External flash */
|
|
#define FLASH_CS GPIOD,7
|
|
#define FLASH_CLK GPIOB,3
|
|
#define FLASH_SDO GPIOB,4
|
|
#define FLASH_SDI GPIOB,5
|
|
|
|
/* PLL */
|
|
#define PLL_CS GPIOD,11
|
|
#define PLL_CLK GPIOE,4
|
|
#define PLL_DAT GPIOE,5 /* WARNING: this line is also HR_C5000 MOSI */
|
|
#define PLL_LD GPIOD,10
|
|
|
|
/* HR_C5000 */
|
|
#define DMR_CS GPIOE,2
|
|
#define DMR_CLK GPIOC,13
|
|
#define DMR_MOSI PLL_DAT
|
|
#define DMR_MISO GPIOE,3
|
|
#define DMR_SLEEP GPIOE,6
|
|
#define V_CS GPIOB,12
|
|
|
|
/* RTX control */
|
|
#define PLL_PWR GPIOA,8
|
|
#define VCOVCC_SW GPIOA,9
|
|
#define DMR_SW GPIOA,10
|
|
#define FM_SW GPIOB,2
|
|
#define WN_SW GPIOA,13
|
|
#define RF_APC_SW GPIOC,4
|
|
#define TX_STG_EN GPIOC,5
|
|
#define RX_STG_EN GPIOC,9
|
|
#define APC_TV GPIOA,4
|
|
#define MOD2_BIAS GPIOA,5
|
|
|
|
/* Audio control */
|
|
#define AUDIO_AMP_EN GPIOB,9
|
|
#define SPK_MUTE GPIOB,8
|
|
#define FM_MUTE GPIOE,13
|
|
#define MIC_PWR GPIOA,14
|
|
|
|
/* GPS, for the devices who have it */
|
|
#define GPS_EN GPIOD,8
|
|
#define GPS_DATA GPIOD,9
|
|
|
|
#endif
|