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

WIP: Initial support for UF2 file format #io #23117

Merged
merged 8 commits into from
Jul 13, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
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
1 change: 1 addition & 0 deletions dist/plugins-cfg/plugins.def.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,7 @@ io.w32
io.w32dbg
io.winedbg
io.sysgdb
io.uf2
io.winkd
io.xalz
io.xattr
Expand Down
1 change: 1 addition & 0 deletions libr/include/r_io.h
Original file line number Diff line number Diff line change
Expand Up @@ -639,6 +639,7 @@ extern RIOPlugin r_io_plugin_treebuf;
extern RIOPlugin r_io_plugin_sysgdb;
extern RIOPlugin r_io_plugin_serial;
extern RIOPlugin r_io_plugin_cyclic;
extern RIOPlugin r_io_plugin_uf2;

#if __cplusplus
}
Expand Down
1 change: 1 addition & 0 deletions libr/io/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ r_io_sources = [
'p/io_shm.c',
'p/io_sparse.c',
'p/io_tcpslurp.c',
'p/io_uf2.c',
'p/io_winkd.c',
'p/io_winedbg.c',
'p/io_zip.c',
Expand Down
Loading
Loading