Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FlipTDI #234

Merged
merged 22 commits into from
Oct 7, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
FlipTDI: fix syntax
  • Loading branch information
Skorpionm committed Jul 15, 2024
commit 8d4c6c6eb6a0d175e9f1c6db1e9ec666d25a82ac
4 changes: 2 additions & 2 deletions flip_tdi/scenes/flip_tdi_scene_about.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ void flip_tdi_scene_about_on_enter(void* context) {

furi_string_cat_printf(temp_str, "\e#%s\n", "What it can do:");
furi_string_cat_printf(temp_str, "- Emulate FT232H VCP mode\n");
furi_string_cat_printf(temp_str, "- Emulate FT232H Async bitband mode, max freq 100kHz \n");
furi_string_cat_printf(temp_str, "- Emulate FT232H Sync bitband mode, max freq 100kHz \n");
furi_string_cat_printf(temp_str, "- Emulate FT232H Async bitbang mode, max freq 100kHz \n");
furi_string_cat_printf(temp_str, "- Emulate FT232H Sync bitbang mode, max freq 100kHz \n");

widget_add_text_box_element(
app->widget,
Expand Down
Loading