diff options
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/embedding/README.md | 2 | ||||
| -rw-r--r-- | examples/hwapi/README.md | 2 | ||||
| -rw-r--r-- | examples/hwapi/hwconfig_pyboard.py | 2 | ||||
| -rw-r--r-- | examples/natmod/features1/features1.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/examples/embedding/README.md b/examples/embedding/README.md index e3683acdc..3f19aff41 100644 --- a/examples/embedding/README.md +++ b/examples/embedding/README.md @@ -23,7 +23,7 @@ To build the example project, based on `main.c`, use: $ make -That will create an exacutable called `embed` which you can run: +That will create an executable called `embed` which you can run: $ ./embed diff --git a/examples/hwapi/README.md b/examples/hwapi/README.md index df16b4c86..f3de752f9 100644 --- a/examples/hwapi/README.md +++ b/examples/hwapi/README.md @@ -5,7 +5,7 @@ which would work from a board to board, from a system to another systems. This is inherently a hard problem, because hardware is different from one board type to another, and even from examplar of board to another. For example, if your app requires an external LED, one user may connect it -to one GPIO pin, while another user may find it much more convinient to +to one GPIO pin, while another user may find it much more convenient to use another pin. This of course applies to relays, buzzers, sensors, etc. With complications above in mind, it's still possible to write portable diff --git a/examples/hwapi/hwconfig_pyboard.py b/examples/hwapi/hwconfig_pyboard.py index a74a1ae15..cb77e9f2d 100644 --- a/examples/hwapi/hwconfig_pyboard.py +++ b/examples/hwapi/hwconfig_pyboard.py @@ -1,6 +1,6 @@ from machine import Pin, Signal -# Red LED on pin LED_RED also kown as A13 +# Red LED on pin LED_RED also known as A13 LED = Signal("LED_RED", Pin.OUT) # Green LED on pin LED_GREEN also known as A14 diff --git a/examples/natmod/features1/features1.c b/examples/natmod/features1/features1.c index f865f1887..d2494b213 100644 --- a/examples/natmod/features1/features1.c +++ b/examples/natmod/features1/features1.c @@ -88,7 +88,7 @@ mp_obj_t mpy_init(mp_obj_fun_bc_t *self, size_t n_args, size_t n_kw, mp_obj_t *a // This must be first, it sets up the globals dict and other things MP_DYNRUNTIME_INIT_ENTRY - // Messages can be printed as usualy + // Messages can be printed as usual mp_printf(&mp_plat_print, "initialising module self=%p\n", self); // Make the functions available in the module's namespace |
