Features: - VFO mode with direct frequency input - POCSAG decoder (512/1200 baud) with BCH(31,21) correction - Full-screen Spectrum analyzer - FM Radio receiver - RSSI signal indicator overlay - Custom boot splash (UA1ZBE / POCSAG pager / build date) Architecture: - app/mode.c — mode dispatcher (VFO/POCSAG/Spectrum/FM) - app/boot_splash.c — 2-second boot splash - app/pocsag/ — POCSAG decoder + BCH correction - app/display_rssi.c — RSSI indicator - main.c — entry point with custom init - syscalls.c — bare-metal _sbrk stub Build: arm-none-eabi-gcc -Os -flto -Wall -Werror -Wextra Size: 57.9KB Flash / 3.6KB RAM Controls: - 0-9: Direct frequency input (VFO) - SK2: POCSAG mode - SK1: Spectrum analyzer - 0: FM Radio - EXIT: Return to VFO - F/*: Toggle 512/1200 baud (in POCSAG)
93 lines
3.3 KiB
C
93 lines
3.3 KiB
C
/*
|
|
* Copyright (c) 2013-2020 ARM Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Licensed 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
|
|
*
|
|
* www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* 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.
|
|
*
|
|
* $Date: 24. January 2020
|
|
* $Revision: V2.0
|
|
*
|
|
* Project: USB Driver common definitions
|
|
*/
|
|
|
|
/* History:
|
|
* Version 2.0
|
|
* Version 1.10
|
|
* Namespace prefix ARM_ added
|
|
* Version 1.01
|
|
* Added PID Types
|
|
* Version 1.00
|
|
* Initial release
|
|
*/
|
|
|
|
#ifndef DRIVER_USB_H_
|
|
#define DRIVER_USB_H_
|
|
|
|
#include "Driver_Common.h"
|
|
|
|
/* USB Role */
|
|
#define ARM_USB_ROLE_NONE (0U)
|
|
#define ARM_USB_ROLE_HOST (1U)
|
|
#define ARM_USB_ROLE_DEVICE (2U)
|
|
|
|
/* USB Pins */
|
|
#define ARM_USB_PIN_DP (1U << 0) ///< USB D+ pin
|
|
#define ARM_USB_PIN_DM (1U << 1) ///< USB D- pin
|
|
#define ARM_USB_PIN_VBUS (1U << 2) ///< USB VBUS pin
|
|
#define ARM_USB_PIN_OC (1U << 3) ///< USB OverCurrent pin
|
|
#define ARM_USB_PIN_ID (1U << 4) ///< USB ID pin
|
|
|
|
/* USB Speed */
|
|
#define ARM_USB_SPEED_LOW (0U) ///< Low-speed USB
|
|
#define ARM_USB_SPEED_FULL (1U) ///< Full-speed USB
|
|
#define ARM_USB_SPEED_HIGH (2U) ///< High-speed USB
|
|
|
|
/* USB PID Types */
|
|
#define ARM_USB_PID_OUT (1U)
|
|
#define ARM_USB_PID_IN (9U)
|
|
#define ARM_USB_PID_SOF (5U)
|
|
#define ARM_USB_PID_SETUP (13U)
|
|
#define ARM_USB_PID_DATA0 (3U)
|
|
#define ARM_USB_PID_DATA1 (11U)
|
|
#define ARM_USB_PID_DATA2 (7U)
|
|
#define ARM_USB_PID_MDATA (15U)
|
|
#define ARM_USB_PID_ACK (2U)
|
|
#define ARM_USB_PID_NAK (10U)
|
|
#define ARM_USB_PID_STALL (14U)
|
|
#define ARM_USB_PID_NYET (6U)
|
|
#define ARM_USB_PID_PRE (12U)
|
|
#define ARM_USB_PID_ERR (12U)
|
|
#define ARM_USB_PID_SPLIT (8U)
|
|
#define ARM_USB_PID_PING (4U)
|
|
#define ARM_USB_PID_RESERVED (0U)
|
|
|
|
/* USB Endpoint Address (bEndpointAddress) */
|
|
#define ARM_USB_ENDPOINT_NUMBER_MASK (0x0FU)
|
|
#define ARM_USB_ENDPOINT_DIRECTION_MASK (0x80U)
|
|
|
|
/* USB Endpoint Type */
|
|
#define ARM_USB_ENDPOINT_CONTROL (0U) ///< Control Endpoint
|
|
#define ARM_USB_ENDPOINT_ISOCHRONOUS (1U) ///< Isochronous Endpoint
|
|
#define ARM_USB_ENDPOINT_BULK (2U) ///< Bulk Endpoint
|
|
#define ARM_USB_ENDPOINT_INTERRUPT (3U) ///< Interrupt Endpoint
|
|
|
|
/* USB Endpoint Maximum Packet Size (wMaxPacketSize) */
|
|
#define ARM_USB_ENDPOINT_MAX_PACKET_SIZE_MASK (0x07FFU)
|
|
#define ARM_USB_ENDPOINT_MICROFRAME_TRANSACTIONS_MASK (0x1800U)
|
|
#define ARM_USB_ENDPOINT_MICROFRAME_TRANSACTIONS_1 (0x0000U)
|
|
#define ARM_USB_ENDPOINT_MICROFRAME_TRANSACTIONS_2 (0x0800U)
|
|
#define ARM_USB_ENDPOINT_MICROFRAME_TRANSACTIONS_3 (0x1000U)
|
|
|
|
#endif /* DRIVER_USB_H_ */
|