mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2026-07-26 10:38:52 +00:00
d8a1e2530a
* Add U64 BoundSetting * Add secplus-tx * Add secplus license * Update icon * UI update * Add filesystem::path BoundSetting * Add file UI * Rename file * Add save button * Fix warnings, add integer conversions to UI macros * UI update * Copilot suggestions, name edit UI * Fix buffer length * Style update * Avoid recursion in Widget::style() * Apply suggestions from code review * Move secplustx.cpp to external * Shorten title * Space optimizations, remove FilePath setting * Remove assertions * Change namespace * Change title to match
20 lines
406 B
C++
20 lines
406 B
C++
/*
|
|
* Copyright 2022 Clayton Smith (argilo@gmail.com)
|
|
*
|
|
* This file is part of secplus.
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
*/
|
|
|
|
#ifndef __SECPLUSTX__
|
|
#define __SECPLUSTX__
|
|
|
|
#include <cstdint>
|
|
|
|
namespace ui::external_app::ui_secplustx {
|
|
int8_t encode_v2(const uint32_t rolling, const uint64_t fixed, uint32_t data, const uint8_t frame_type, uint8_t* packet1, uint8_t* packet2);
|
|
};
|
|
|
|
#endif
|