mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2026-08-13 11:23:41 +00:00
5aecd4097e
* First step to epirb-tx app * Next step to epirb_tx app * Fixed merge * EPIRB TX app progress - Fixed UI - Added automatic frame resend after delay - Added load of beacons from EPIRB/BEACONS.TXT file * First step to adding 121.5 MHz signal * Refactored 121.5 signal generation code * Added frequency change when switching from BPSK to AM * Added checkbox for AM signal. Added START/STOP button Added AM frequency First step to editor mode. * Next step to frame editor * Fixed location bits. * Refactored code + fixed location * Added location fields * UI fixes + settings backup Fixed lat/long display Added send on change checkbox Added settings backup Fixed locator edition Fixed BEACONS.TXT to move to Self test beacons. * Update ui_epirb_tx.cpp Fixed timeout reset * Added national location protocol. Added national location protocol. Fixed send on change. * UI fixes Added country selection Separated beacon protocol and beacon type selectors * Standard protocol Added standard protocol Added internal checkbox * Fixed fomratting * Code cleanup * Comments / doc * More comments / doc * More comments / doc Fixed pre count duration. Added frequency restore after leaving * Prepare merge * Prepare merge * Finished merge * More comments and doc * Update ui_epirb_tx.cpp Fixed out of memory error when using AlphanumView * Update proc_epirb_tx.hpp Fixed comment * Fixed copilot PR comments. * Update proc_epirb_tx.hpp Fixed formatting * Update external.ld Merge with kiss_tnc app
66 lines
2.6 KiB
C++
66 lines
2.6 KiB
C++
/*
|
|
* Copyright (C) 2024 Mark Thompson
|
|
*
|
|
* This file is part of PortaPack.
|
|
*
|
|
* 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, 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; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef __FILE_PATH_H__
|
|
#define __FILE_PATH_H__
|
|
|
|
#include "file.hpp"
|
|
|
|
extern const std::filesystem::path adsb_dir;
|
|
extern const std::filesystem::path ais_dir;
|
|
extern const std::filesystem::path apps_dir;
|
|
extern const std::filesystem::path aprs_dir;
|
|
extern const std::filesystem::path audio_dir;
|
|
extern const std::filesystem::path blerx_dir;
|
|
extern const std::filesystem::path bletx_dir;
|
|
extern const std::filesystem::path captures_dir;
|
|
extern const std::filesystem::path cvsfiles_dir;
|
|
extern const std::filesystem::path debug_dir;
|
|
extern const std::filesystem::path firmware_dir;
|
|
extern const std::filesystem::path freqman_dir;
|
|
extern const std::filesystem::path gps_dir;
|
|
extern const std::filesystem::path logs_dir;
|
|
extern const std::filesystem::path looking_glass_dir;
|
|
extern const std::filesystem::path playlist_dir;
|
|
extern const std::filesystem::path remotes_dir;
|
|
extern const std::filesystem::path repeat_rec_path;
|
|
extern const std::filesystem::path samples_dir;
|
|
extern const std::filesystem::path screenshots_dir;
|
|
extern const std::filesystem::path settings_dir;
|
|
extern const std::filesystem::path spectrum_dir;
|
|
extern const std::filesystem::path splash_dir;
|
|
extern const std::filesystem::path sstv_dir;
|
|
extern const std::filesystem::path wav_dir;
|
|
extern const std::filesystem::path whipcalc_dir;
|
|
extern const std::filesystem::path ook_editor_dir;
|
|
extern const std::filesystem::path hopper_dir;
|
|
extern const std::filesystem::path subghz_dir;
|
|
extern const std::filesystem::path tpms_dir;
|
|
extern const std::filesystem::path waterfalls_dir;
|
|
extern const std::filesystem::path macaddress_dir;
|
|
extern const std::filesystem::path keeloq_keys_dir;
|
|
extern const std::filesystem::path keeloq_remotes_dir;
|
|
extern const std::filesystem::path epirb_dir;
|
|
|
|
extern const std::filesystem::path splash_dot_bmp;
|
|
|
|
#endif /* __FILE_PATH_H__ */
|