mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #6286 from delftswa2018/feature-typo-fixes
Small typo fixes in readme.md filespull/6302/merge
commit
87b37c0e2a
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
```
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue