diff options
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/test_mem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/test_mem.c b/apps/plugins/test_mem.c index 7758e35..df35893 100644 --- a/apps/plugins/test_mem.c +++ b/apps/plugins/test_mem.c @@ -206,7 +206,7 @@ enum plugin_status plugin_start(const void* parameter) #if defined(PLUGIN_USE_IRAM) read_test (buf_iram, BUF_SIZE, LOOP_REPEAT_IRAM, line++, "IRAM"); write_test (buf_iram, BUF_SIZE, LOOP_REPEAT_IRAM, line++, "IRAM"); - memset_test(buf_iram, BUF_SIZE, LOOP_REPEAT_DRAM, line++, "IRAM"); + memset_test(buf_iram, BUF_SIZE, LOOP_REPEAT_IRAM, line++, "IRAM"); memcpy_test(buf_iram, BUF_SIZE, LOOP_REPEAT_DRAM, line++, "IRAM"); #endif |