Merge branch 'feature/ulp_stop' into 'master'

ULP: add functions for stopping/restarting the ulp-riscv

Closes IDFGH-6588

See merge request espressif/esp-idf!16853
This commit is contained in:
Marius Vikhammer
2022-01-21 01:37:04 +00:00
11 changed files with 200 additions and 22 deletions

View File

@@ -148,7 +148,7 @@ int main (void)
break;
}
/* ulp_riscv_shutdown() is called automatically when main exits,
/* ulp_riscv_halt() is called automatically when main exits,
main will be executed again at the next timeout period,
according to ulp_set_wakeup_period()
*/

View File

@@ -36,6 +36,6 @@ int main (void)
break;
}
}
/* ulp_riscv_shutdown() is called automatically when main exits */
/* ulp_riscv_halt() is called automatically when main exits */
return 0;
}