Skip to content

Commit e203bea

Browse files
committed
Fix segmented download of objects larger than 64 bits
The notification callback was not being triggered for downloads of objects larger than 64 bits. Also, the cached field of the SDO job was never cleared which would cause downloads of large objects to always fail once a small object had been downloaded.
1 parent d152e8d commit e203bea

7 files changed

+55
-29
lines changed

src/co_main.c

+2
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,7 @@ int co_sdo_read (
277277
job->sdo.subindex = subindex;
278278
job->sdo.data = data;
279279
job->sdo.remain = size;
280+
job->sdo.cached = false;
280281
job->callback = co_job_callback;
281282
job->timestamp = os_tick_current();
282283
job->type = CO_JOB_SDO_READ;
@@ -306,6 +307,7 @@ int co_sdo_write (
306307
job->sdo.subindex = subindex;
307308
job->sdo.data = (uint8_t *)data;
308309
job->sdo.remain = size;
310+
job->sdo.cached = false;
309311
job->callback = co_job_callback;
310312
job->timestamp = os_tick_current();
311313
job->type = CO_JOB_SDO_WRITE;

src/co_od.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ static int co_subindex_equals (
3636
return entry->subindex == subindex;
3737
}
3838

39-
static void co_od_notify (
39+
void co_od_notify (
4040
co_net_t * net,
4141
const co_obj_t * obj,
4242
const co_entry_t * entry,

src/co_od.h

+17
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,23 @@ uint32_t co_od_set_value (
271271
uint8_t subindex,
272272
uint64_t value);
273273

274+
/**
275+
* Trigger notification callback
276+
*
277+
* This functions triggers the notification callback of the subindex,
278+
* if any.
279+
*
280+
* @param net network handle
281+
* @param obj object descriptor
282+
* @param entry entry descriptor
283+
* @param subindex subindex
284+
*/
285+
void co_od_notify (
286+
co_net_t * net,
287+
const co_obj_t * obj,
288+
const co_entry_t * entry,
289+
uint8_t subindex);
290+
274291
#ifdef __cplusplus
275292
}
276293
#endif

src/co_sdo_server.c

+31-25
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ static int co_sdo_rx_upload_init_req (
129129
job->type = CO_JOB_SDO_UPLOAD;
130130
job->sdo.index = co_fetch_uint16 (&data[1]);
131131
job->sdo.subindex = data[3];
132+
job->sdo.cached = false;
132133
job->timestamp = os_tick_current();
133134

134135
/* Find requested object */
@@ -306,6 +307,7 @@ static int co_sdo_rx_download_init_req (
306307
job->type = CO_JOB_SDO_DOWNLOAD;
307308
job->sdo.index = co_fetch_uint16 (&data[1]);
308309
job->sdo.subindex = data[3];
310+
job->sdo.cached = false;
309311
job->timestamp = os_tick_current();
310312

311313
/* Find requested object */
@@ -466,34 +468,34 @@ static int co_sdo_rx_download_seg_req (
466468
/* Write complete */
467469
job->type = CO_JOB_NONE;
468470

469-
if (job->sdo.cached)
471+
/* Find requested object */
472+
obj = co_obj_find (net, job->sdo.index);
473+
if (obj == NULL)
470474
{
471-
/* Find requested object */
472-
obj = co_obj_find (net, job->sdo.index);
473-
if (obj == NULL)
474-
{
475-
co_sdo_abort (
476-
net,
477-
0x580 + net->node,
478-
job->sdo.index,
479-
job->sdo.subindex,
480-
CO_SDO_ABORT_BAD_INDEX);
481-
return -1;
482-
}
475+
co_sdo_abort (
476+
net,
477+
0x580 + net->node,
478+
job->sdo.index,
479+
job->sdo.subindex,
480+
CO_SDO_ABORT_BAD_INDEX);
481+
return -1;
482+
}
483483

484-
/* Find requested subindex */
485-
entry = co_entry_find (net, obj, job->sdo.subindex);
486-
if (entry == NULL)
487-
{
488-
co_sdo_abort (
489-
net,
490-
0x580 + net->node,
491-
job->sdo.index,
492-
job->sdo.subindex,
493-
CO_SDO_ABORT_BAD_SUBINDEX);
494-
return -1;
495-
}
484+
/* Find requested subindex */
485+
entry = co_entry_find (net, obj, job->sdo.subindex);
486+
if (entry == NULL)
487+
{
488+
co_sdo_abort (
489+
net,
490+
0x580 + net->node,
491+
job->sdo.index,
492+
job->sdo.subindex,
493+
CO_SDO_ABORT_BAD_SUBINDEX);
494+
return -1;
495+
}
496496

497+
if (job->sdo.cached)
498+
{
497499
/* Atomically set value */
498500
abort =
499501
co_od_set_value (net, obj, entry, job->sdo.subindex, job->sdo.value);
@@ -508,6 +510,10 @@ static int co_sdo_rx_download_seg_req (
508510
return -1;
509511
}
510512
}
513+
else
514+
{
515+
co_od_notify (net, obj, entry, job->sdo.subindex);
516+
}
511517
}
512518

513519
/* Segmented response */

test/test_sdo_client.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ TEST_F (SdoClientTest, ExpeditedUpload)
5858

5959
TEST_F (SdoClientTest, ExpeditedDownload)
6060
{
61-
co_job_t job;
61+
co_job_t job{};
6262
uint16_t value = 0;
6363

6464
uint8_t expected[][8] = {
@@ -136,7 +136,7 @@ TEST_F (SdoClientTest, SegmentedUpload)
136136

137137
TEST_F (SdoClientTest, SegmentedDownload)
138138
{
139-
co_job_t job;
139+
co_job_t job{};
140140
const char * s = "hello world";
141141

142142
uint8_t expected[][8] = {

test/test_sdo_server.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ TEST_F (SdoServerTest, SegmentedDownload)
132132
}
133133

134134
EXPECT_STREQ ("new slave name", name1009);
135+
EXPECT_EQ (1u, cb_notify_calls);
135136
}
136137

137138
TEST_F (SdoServerTest, SegmentedDownloadCached)

test/test_util.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class TestBase : public ::testing::Test
9797

9898
char name1009[20] = {0};
9999
co_entry_t OD1009[1] = {
100-
{0, OD_RW, DTYPE_VISIBLE_STRING, 8 * sizeof (name1009), 0, name1009},
100+
{0, OD_NOTIFY | OD_RW, DTYPE_VISIBLE_STRING, 8 * sizeof (name1009), 0, name1009},
101101
};
102102

103103
char name100A[20];

0 commit comments

Comments
 (0)