Update README

Fix typo #240

Signed-off-by: tomoaki <tomoaki@tomy-tech.com>
This commit is contained in:
tomoaki
2021-06-07 18:09:12 +09:00
parent d3626bb68d
commit 85ae4e3596
2 changed files with 3 additions and 3 deletions

View File

@@ -57,7 +57,7 @@ TEST_LIST = {// e.g. TEST( Label, Test),
## step1. Define a sensor network
**UDP** or **Bluetooth** is available as a sensor network.
Uncomment a line \#define UDP or BLE in LMqttsnClientApp.h file.
Uncomment a line \#define UDP or RFCOMM in LMqttsnClientApp.h file.
```
/*======================================
@@ -65,7 +65,7 @@ Uncomment a line \#define UDP or BLE in LMqttsnClientApp.h file.
======================================*/
//#define CLIENT_MODE
#define UDP
//#define BLE
//#define RFCOMM
```
## step2. Build

View File

@@ -95,7 +95,7 @@ private:
class RingBuffer
{
public:
RingBuffer(const char* keyDirctory = MQTTSNGW_KEY_DIRECTORY);
RingBuffer(const char* keyDirectory = MQTTSNGW_KEY_DIRECTORY);
~RingBuffer();
void put(char* buffer);
int get(char* buffer, int bufferLength);