diff options
author | Jim Mussared <jim.mussared@gmail.com> | 2022-09-29 17:49:58 +1000 |
---|---|---|
committer | Jim Mussared <jim.mussared@gmail.com> | 2022-09-30 17:34:03 +1000 |
commit | 924a3e03ec167c4417d89b531794c75ce5a631a3 (patch) | |
tree | 2ac907514720c98fd79ab7108f58a80c37f9b0ae /examples/hwapi | |
parent | ba3652f15d96d9dca0f84522639ea2005b07fcb4 (diff) | |
download | micropython-924a3e03ec167c4417d89b531794c75ce5a631a3.tar.gz micropython-924a3e03ec167c4417d89b531794c75ce5a631a3.zip |
top: Replace upip with mip everywhere.
Updates all README.md and docs, and manifests to `require("mip")`.
Also extend and improve the documentation on freezing and packaging.
This work was funded through GitHub Sponsors.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'examples/hwapi')
-rw-r--r-- | examples/hwapi/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/hwapi/README.md b/examples/hwapi/README.md index 1992eb6609..df16b4c86b 100644 --- a/examples/hwapi/README.md +++ b/examples/hwapi/README.md @@ -116,7 +116,7 @@ For example, one may invent a "configuration manager" helper module which will try to detect current board (among well-known ones), and load appropriate `hwconfig_*.py` - this assumes that a user would lazily deploy them all (or that application will be automatically installed, e.g. using MicroPython's -`upip` package manager). The key point in this case remains the same as +`mip` package manager). The key point in this case remains the same as elaborated above - always assume there can, and will be a custom configuration, and it should be well supported. So, any automatic detection should be overridable by a user, and instructions how to do so are among the most |