From 3374d85577bd8c6248de5dc1b7c4103ad3f2f685 Mon Sep 17 00:00:00 2001
From: duff2013 <5598200+duff2013@users.noreply.github.com>
Date: Sun, 14 Jul 2019 00:59:19 -0700
Subject: [PATCH] update
---
README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 4a7edae..eb1ffff 100644
--- a/README.md
+++ b/README.md
@@ -93,7 +93,7 @@ entry:
halt
```
-Create a new tab named ulp_main.h. This header allows your sketch to see global variables whose memory is allocated your ulp assembly file. This memory is in the SLOW RTC section. Copy the code below into that header file. As with the esp-idf you have to add 'ulp_' to the front of the variable name. Unlike esp-idf the name of this header is always this name.
+Create a new tab named ulp_main.h. This header allows your sketch to see global variables whose memory is allocated in your ulp assembly file. This memory is in the SLOW RTC section. Copy the code below into that header file. As with the esp-idf you have to add 'ulp_' to the front of the variable name. Unlike esp-idf the name of this header is always this name.
```
/*
Put your ULP globals here you want visibility
@@ -167,7 +167,7 @@ void entry() {
#endif // do not add code after here
```
-Create a new tab named ulp_main.h. This header allows your sketch to see global variables whose memory is allocated your ulp c file. This memory is in the SLOW RTC section. Copy the code below into that header file. As with the esp-idf you have to add 'ulp_' to the front of the variable name. Unlike esp-idf the name of this header is always this name.
+Create a new tab named ulp_main.h. This header allows your sketch to see global variables whose memory is allocated in your ulp c file. This memory is in the SLOW RTC section. Copy the code below into that header file. As with the esp-idf you have to add 'ulp_' to the front of the variable name. Unlike esp-idf the name of this header is always this name.
```
/*
Put your ULP globals here you want visibility