1 /* Copyright (c) 2024 Nordic Semiconductor ASA 2 * SPDX-License-Identifier: Apache-2.0 3 */ 4 #ifndef BT_SETTINGS_COMMIT_H_ 5 #define BT_SETTINGS_COMMIT_H_ 6 7 /** 8 * @brief Bluetooth Settings Commit Priorities 9 * 10 * Enum of commit priorities for Bluetooth settings handlers. 11 * Lower values indicate higher priority. 12 */ 13 enum bt_settings_commit_priority { 14 BT_SETTINGS_CPRIO_0, 15 BT_SETTINGS_CPRIO_1, 16 BT_SETTINGS_CPRIO_2, 17 }; 18 19 #endif /* BT_SETTINGS_COMMIT_H_ */ 20