1 /* 2 * Copyright (c) 2024 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef NRFS_USB_REQS_H 8 #define NRFS_USB_REQS_H 9 10 #include "nrfs_reqs_common.h" 11 12 #ifdef __cplusplus 13 extern "C" { 14 #endif 15 16 enum { 17 NRFS_USB_REQ_ENABLE = NRFS_REQUEST_ID_DEF(NRFS_SERVICE_ID_USB, 0x01), 18 NRFS_USB_REQ_DISABLE = NRFS_REQUEST_ID_DEF(NRFS_SERVICE_ID_USB, 0x02), 19 }; 20 21 #ifdef __cplusplus 22 } 23 #endif 24 25 #endif /* NRFS_USB_REQS_H */ 26