This is a clipboard driver implemented with Zephyr's flash circular buffer (FCB) subsystem.
Checkout and initialize workspace
west init -m https://github.com/Dalachowsky/zephyr_clipboard_driver clipboard_driver_workspace
cd clipboard_driver_workspace
west updateBuild the app
cd zephyr_clipboard_driver
west build app -b native_sim./build/zephyr/zephyr.exeShell is available as /dev/pts/x.
Available commands are:
append <data>- append data to clipboarderase- erase all data from clipboardread <n>- read out n oldest entriessize- get number of entries in the clipboard
west twister -T tests