This repository was archived by the owner on Jun 4, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,4 +3,7 @@ if(NOT CONFIG_DEBUG)
33 add_definitions (-DNDEBUG )
44endif ()
55
6+ # Use a shared CPM cache for the west workspace
7+ set (CPM_SOURCE_CACHE "${CMAKE_CURRENT_LIST_DIR } /../modules/cpm" PARENT_SCOPE )
8+
69add_subdirectory (lib )
Original file line number Diff line number Diff line change 1212#include " simple_keyboard.hpp"
1313#include < port/zephyr/bluetooth/hid.hpp>
1414#include < port/zephyr/bluetooth/le.hpp>
15- #include < port/zephyr/message_queue.hpp>
1615#include < raw_to_hex_string.hpp>
1716#include < usb/df/message.hpp>
17+ #include < zephyr/message_queue.hpp>
1818
1919LOG_MODULE_REGISTER (main, LOG_LEVEL_INF );
2020
@@ -53,7 +53,7 @@ static int advertise(void)
5353
5454auto & pairing_msgq ()
5555{
56- static os:: zephyr::message_queue_instance<::bt_conn*, CONFIG_BT_MAX_CONN > msgq;
56+ static zephyr::message_queue_instance<::bt_conn*, CONFIG_BT_MAX_CONN > msgq;
5757 return msgq;
5858}
5959
@@ -232,7 +232,7 @@ static auto& hog_service()
232232
233233auto & kb_msgq ()
234234{
235- static os:: zephyr::message_queue_instance<input_event, 2 > msgq;
235+ static zephyr::message_queue_instance<input_event, 2 > msgq;
236236 return msgq;
237237}
238238
Load diff This file was deleted.
Original file line number Diff line number Diff line change 1+ west
2+ GitPython
Original file line number Diff line number Diff line change 33#include < zephyr/input/input.h>
44#include < zephyr/logging/log.h>
55
6- #include < port/zephyr/message_queue.hpp>
76#include < port/zephyr/udc_mac.hpp>
87#include < simple_keyboard.hpp>
98#include < usb/df/class/hid.hpp>
109#include < usb/df/device.hpp>
10+ #include < zephyr/message_queue.hpp>
1111
1212LOG_MODULE_REGISTER (main, LOG_LEVEL_INF );
1313
1414using namespace magic_enum ::bitwise_operators;
1515
1616auto & kb_msgq ()
1717{
18- static os:: zephyr::message_queue_instance<input_event, 2 > msgq;
18+ static zephyr::message_queue_instance<input_event, 2 > msgq;
1919 return msgq;
2020}
2121
Original file line number Diff line number Diff line change 55
66#include < high_resolution_mouse.hpp>
77#include < magic_enum.hpp>
8- #include < port/zephyr/message_queue.hpp>
98#include < port/zephyr/udc_mac.hpp>
109#include < usb/df/class/hid.hpp>
1110#include < usb/df/device.hpp>
11+ #include < zephyr/message_queue.hpp>
1212
1313LOG_MODULE_REGISTER (main, LOG_LEVEL_INF );
1414
@@ -20,7 +20,7 @@ struct kb_event
2020
2121auto & kb_msgq ()
2222{
23- static os:: zephyr::message_queue_instance<kb_event, 2 > msgq;
23+ static zephyr::message_queue_instance<kb_event, 2 > msgq;
2424 return msgq;
2525}
2626
Original file line number Diff line number Diff line change 55#include < hid/app/mouse.hpp>
66#include < hid/application.hpp>
77#include < magic_enum.hpp>
8- #include < port/zephyr/message_queue.hpp>
98#include < port/zephyr/udc_mac.hpp>
109#include < port/zephyr/usb_shell.hpp>
1110#include < usb/df/device.hpp>
Original file line number Diff line number Diff line change @@ -16,12 +16,13 @@ manifest:
1616 projects :
1717 - name : c2usb
1818 remote : IntergatedCircuits
19- revision : 988d8ad7fc615d9f9d3d73c9af60fa8c0410480e
20- submodules : true
19+ revision : 6874aa02d3a45cdc3b0ceec7ed312f12a8e85a12
20+ import : true
21+
2122 - name : nrf
2223 repo-path : sdk-nrf
2324 remote : nrfconnect
24- revision : v3.1.0
25+ revision : v3.2.1
2526 clone-depth : 1
2627 import :
2728 # By using name-allowlist we can clone only the modules that are
You can’t perform that action at this time.
0 commit comments