Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: libnsdl_m0 BLE_API Base64 nRF51822 SplitterAssembler
bt_network/BleUartRPC/Dispatcher.h
- Committer:
- ansond
- Date:
- 2015-02-16
- Revision:
- 5:9233e88b9c83
- Child:
- 6:98af441fd960
File content as of revision 5:9233e88b9c83:
/** * @file Dispatcher.h * @brief BLE UART RPC dispatcher header * @author Doug Anson * @version 1.0 * @see * * Copyright (c) 2014 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef __RPC_DISPATCH_H__ #define __RPC_DISPATCH_H__ #include "BLEDevice.h" #include "UARTService.h" #include "Buffer.h" class Dispatcher { public: /** Default constructor @param ble the BLEDevice instance @param rxsize the size of the receive ring buffer (default is 1024) @param txsize the size of the transmit ring buffer (default is 1024) */ Dispatcher(BLEDevice &ble,int rxsize = 1024,int txsize = 1024); /** Dispatch function request with arguments (already serialized and prepared for transport) @param fn_id the identifier for the target remote function to invoke @param args the serialized function argument array list @param args_length the length of the serialized function argument list @param response the received response buffer @param response_length the recieved response buffer length @returns true - dispatch succeeded, false - otherwise */ bool dispatch(uint8_t fn_id,uint8_t *args,int args_length,uint8_t *response,int response_length); private: UARTService m_uart; Buffer<char> m_rxbuf; Buffer<char> m_txbuf; }; #endif // __RPC_DISPATCH_H__