comparison src/cs/services/buzm/buzm_handle_message.c @ 297:8dfdf88d632f

BUZM SWE initial implementation
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 29 Mar 2022 03:45:41 +0000
parents
children
comparison
equal deleted inserted replaced
296:a927f030a4e0 297:8dfdf88d632f
1 /*
2 * Incoming message dispatch for our BUZM task is implemented here.
3 */
4
5 #include "buzm/buzm_env.h"
6 #include "buzm/buzm_func_i.h"
7 #include "rv/rv_general.h"
8 #include "rvf/rvf_api.h"
9 #include "rvm/rvm_use_id_list.h"
10
11 void buzm_process_message(T_RV_HDR *msg_ptr)
12 {
13 switch (msg_ptr->msg_id) {
14 case BUZM_START_REQ:
15 buzm_process_start_req((struct buzm_start_msg *) msg_ptr);
16 return;
17 case BUZM_STOP_REQ:
18 buzm_process_stop_req((struct buzm_stop_msg *) msg_ptr);
19 return;
20 default:
21 rvf_send_trace("BUZM task: Received an unknown message", 38,
22 NULL_PARAM, RV_TRACE_LEVEL_DEBUG_HIGH,
23 BUZM_USE_ID);
24 }
25 }