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:
Krzysztof Kopyściński
2021-11-10 06:24:00 +01:00
committed by Krzysztof Kopyściński
parent 82ccdbce6f
commit 489bb3a925
4 changed files with 377 additions and 233 deletions
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