Skip to content

Commit d6629de

Browse files
author
Kei
committed
Fixed version info.
1 parent a9e7229 commit d6629de

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/utility/config.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747

4848

49-
// >> Legacy (Deprecated since v0.5.0)
49+
// >> Legacy (Deprecated since v0.4.0)
5050
#if defined (ARDUINO_AVR_UNO) || defined (ARDUINO_AVR_YUN) \
5151
|| defined (ARDUINO_AVR_INDUSTRIAL101)
5252
#define DXL_MAX_NODE 16
@@ -77,7 +77,7 @@
7777
#if (DXL_BUF_LENGTH > 0xFFFF)
7878
#error "\r\nError : DXL_BUF_LENGTH is OVERFLOW! This must be a 16 bit range."
7979
#endif
80-
// << Legacy (Deprecated since v0.5.0)
80+
// << Legacy (Deprecated since v0.4.0)
8181

8282

8383

src/utility/master.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1052,7 +1052,7 @@ Master::rxStatusPacket(uint8_t* p_param_buf, uint16_t param_buf_cap, uint32_t ti
10521052

10531053

10541054

1055-
// >> Legacy (Deprecated since v0.5.0)
1055+
// >> Legacy (Deprecated since v0.4.0)
10561056
bool Master::syncRead(const ParamForSyncReadInst_t &param_info, RecvInfoFromStatusInst_t &recv_info, uint32_t timeout_ms)
10571057
{
10581058
bool ret = false;
@@ -1337,4 +1337,4 @@ bool Master::bulkWrite(const ParamForBulkWriteInst_t &param_info)
13371337

13381338
return ret;
13391339
}
1340-
// << Legacy (Deprecated since v0.5.0)
1340+
// << Legacy (Deprecated since v0.4.0)

src/utility/master.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#define COMMON_MODEL_NUMBER_ADDR 0
2828
#define COMMON_MODEL_NUMBER_ADDR_LENGTH 2
2929

30-
// >> Legacy (Deprecated since v0.5.0)
30+
// >> Legacy (Deprecated since v0.4.0)
3131
typedef struct InfoForSyncReadParam{
3232
uint8_t id;
3333
} InfoForSyncReadParam_t;
@@ -85,7 +85,7 @@ typedef struct RecvInfoFromStatusInst{
8585
uint8_t id_count;
8686
XelInfoForStatusInst_t xel[DXL_MAX_NODE]; //refer to below.
8787
} RecvInfoFromStatusInst_t;
88-
// << Legacy (Deprecated since v0.5.0)
88+
// << Legacy (Deprecated since v0.4.0)
8989

9090

9191

@@ -237,12 +237,12 @@ class Master
237237
bool txInstPacket(uint8_t id, uint8_t inst_idx, uint8_t *p_param, uint16_t param_len);
238238
const InfoToParseDXLPacket_t* rxStatusPacket(uint8_t* p_param_buf, uint16_t param_buf_cap, uint32_t timeout_ms = 10);
239239

240-
// >> Legacy (Deprecated since v0.5.0)
240+
// >> Legacy (Deprecated since v0.4.0)
241241
bool syncRead(const ParamForSyncReadInst_t &param_info, RecvInfoFromStatusInst_t &recv_info, uint32_t timeout_ms = 100);
242242
bool syncWrite(const ParamForSyncWriteInst_t &param_info);
243243
bool bulkRead(const ParamForBulkReadInst_t &param_info, RecvInfoFromStatusInst_t &recv_info, uint32_t timeout_ms = 100);
244244
bool bulkWrite(const ParamForBulkWriteInst_t &param_info);
245-
// << Legacy (Deprecated since v0.5.0)
245+
// << Legacy (Deprecated since v0.4.0)
246246

247247
private:
248248
DXLPortHandler *p_port_;

0 commit comments

Comments
 (0)