mirror of
https://github.com/espressif/esp-nimble.git
synced 2026-09-05 00:30:02 +00:00
apps/blemesh: fix build after introducing return codes in models
This applies to both blemesh, blemesh_models_example_1 and blemesh_models_example_2
This commit is contained in:
committed by
Krzysztof Kopyściński
parent
82ccdbce6f
commit
489bb3a925
File diff suppressed because it is too large
Load Diff
@@ -167,11 +167,11 @@ extern struct bt_mesh_model s0_models[];
|
||||
|
||||
extern const struct bt_mesh_comp comp;
|
||||
|
||||
void gen_onoff_publish(struct bt_mesh_model *model);
|
||||
void gen_level_publish(struct bt_mesh_model *model);
|
||||
void light_lightness_publish(struct bt_mesh_model *model);
|
||||
void light_lightness_linear_publish(struct bt_mesh_model *model);
|
||||
void light_ctl_publish(struct bt_mesh_model *model);
|
||||
void light_ctl_temp_publish(struct bt_mesh_model *model);
|
||||
int gen_onoff_publish(struct bt_mesh_model *model);
|
||||
int gen_level_publish(struct bt_mesh_model *model);
|
||||
int light_lightness_publish(struct bt_mesh_model *model);
|
||||
int light_lightness_linear_publish(struct bt_mesh_model *model);
|
||||
int light_ctl_publish(struct bt_mesh_model *model);
|
||||
int light_ctl_temp_publish(struct bt_mesh_model *model);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user