mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-05-07 17:24:58 -04:00
Added RFM69 helper
LGE tool: new frames Text entry string length bugfix
This commit is contained in:
parent
dd35bda197
commit
b1e72c788b
18 changed files with 417 additions and 130 deletions
|
@ -149,10 +149,10 @@ void LCRView::start_tx(const bool scan) {
|
|||
void LCRView::on_button_set_am(NavigationView& nav, int16_t button_id) {
|
||||
text_prompt(
|
||||
nav,
|
||||
&litteral[button_id],
|
||||
litteral[button_id],
|
||||
7,
|
||||
[this, button_id](std::string* buffer) {
|
||||
texts[button_id].set(*buffer);
|
||||
[this, button_id](std::string& buffer) {
|
||||
texts[button_id].set(buffer);
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -227,10 +227,10 @@ LCRView::LCRView(NavigationView& nav) {
|
|||
button_set_rgsb.on_select = [this, &nav](Button&) {
|
||||
text_prompt(
|
||||
nav,
|
||||
&rgsb,
|
||||
rgsb,
|
||||
4,
|
||||
[this](std::string* buffer) {
|
||||
button_set_rgsb.set_text(*buffer);
|
||||
[this](std::string& buffer) {
|
||||
button_set_rgsb.set_text(buffer);
|
||||
});
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue