ulp: fix calculation or ulp_run argument

The argument to ulp_run should be expressed in 32-bit words. Both the
address of ulp_entry and RTC_SLOW_MEM already are uint32_t*, so their
difference is the difference in addresses divided by sizeof(uint32_t).
Therefore the extra division by sizeof(uint32_t) is not needed.
This commit is contained in:
Ivan Grokhotkov
2018-08-07 16:03:23 +03:00
parent a0191b28b2
commit c2e424e7af
3 changed files with 3 additions and 3 deletions

View File

@@ -87,7 +87,7 @@ static void init_ulp_program()
ulp_set_wakeup_period(0, 20000);
/* Start the program */
err = ulp_run((&ulp_entry - RTC_SLOW_MEM) / sizeof(uint32_t));
err = ulp_run(&ulp_entry - RTC_SLOW_MEM);
ESP_ERROR_CHECK(err);
}