Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion events/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ queue.dispatch();

// Events can also pass arguments to the underlying callback when both
// initially constructed and posted.
Event<void(int, int)> event(&queue, printf, "recieved %d and %d\n");
Event<void(int, int)> event(&queue, printf, "received %d and %d\n");

// Events can be posted multiple times and enqueue gracefully until
// the dispatch function is called.
Expand Down
4 changes: 2 additions & 2 deletions features/FEATURE_BLE/targets/TARGET_CORDIO/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# BLE API Cordio Implementation

The BLE API Cordio implementation allows Cordio licensee to easily deliver a
complete and up to date implementation of mbed BLE to their custommers using
complete and up to date implementation of mbed BLE to their customers using
mbed OS.

To deliver a BLE port, vendors simply have to provide an HCI driver taillored
To deliver a BLE port, vendors simply have to provide an HCI driver tailored
for the BLE module present on the board they want to support.

## Source Organization
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The files are kept the same as much as possible to the Nordic SDK. Modifications


## Porting new versions of Nordic SDK
A list of files currently requierd by mbed is maintained in [script/required_files.txt](https://github.com/ARMmbed/nrf51-sdk/blob/master/script/required_files.txt). [A python script](https://github.com/ARMmbed/nrf51-sdk/blob/master/script/pick_nrf51_files.py) is written to help porting from nordic sdk releases. **required_files.txt** is parsed to find a list of filenames. The script searches for these filenames in the sdk folder, and copy then into the yotta module mirroring the folder structure in the sdk. **extraIncludes** is automatically added to module.json to allow direct inclusion of noridc headers with just the filename.
A list of files currently required by mbed is maintained in [script/required_files.txt](https://github.com/ARMmbed/nrf51-sdk/blob/master/script/required_files.txt). [A python script](https://github.com/ARMmbed/nrf51-sdk/blob/master/script/pick_nrf51_files.py) is written to help porting from nordic sdk releases. **required_files.txt** is parsed to find a list of filenames. The script searches for these filenames in the sdk folder, and copy then into the yotta module mirroring the folder structure in the sdk. **extraIncludes** is automatically added to module.json to allow direct inclusion of noridc headers with just the filename.

### Script usage
```
Expand Down
2 changes: 1 addition & 1 deletion features/mbedtls/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This edition of mbed TLS has been adapted for mbed OS and imported from its stan
Getting Help and Support
------------------------

The [mbed TLS website](https://tls.mbed.org/) contains fulll documentation for the library, including function by function descriptions, knowledgebase articles, blogs and a support forum for questions to the community.
The [mbed TLS website](https://tls.mbed.org/) contains full documentation for the library, including function by function descriptions, knowledgebase articles, blogs and a support forum for questions to the community.


Contributing to the Project
Expand Down
2 changes: 1 addition & 1 deletion features/nvstore/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Each item is kept in an entry containing a header and data, where the header hol
### Enabling NVStore and configuring it for your board
NVStore is enabled by default for all devices with the internal flash driver (have "FLASH" in the device_has attribute).
One can disable it by setting its "enabled" attribute to false.
Unless specifically configured by the user, NVStore selects the last two flash sectors as its areas, with the mininum size of 4KBs,
Unless specifically configured by the user, NVStore selects the last two flash sectors as its areas, with the minimum size of 4KBs,
meaning that if the sectors are smaller, few continuous ones will be used for each area.
The user can override this by setting the addresses and sizes of both areas in` mbed_lib.json` on a per board basis.
In this case, all following four attributes need to be set:
Expand Down