Skip to content

Commit

Permalink
Updated readme to reflect removal of the "_init()" function
Browse files Browse the repository at this point in the history
  • Loading branch information
nqtronix committed Jan 12, 2021
1 parent 1261d02 commit b4f7ce1
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,11 @@ It can be surprisingly difficult to debug the smallest MCUs of the AVR family -
<br>

## Usage Example
**avr-tinyuart** is trivial to use. Just call `tinyuart_init()` to init the output and `tinyuart_send_uint8()` whenever you want so send some data.
**avr-tinyuart** is trivial to use. Just call `tinyuart_send_uint8()` whenever you want so send some data.

```c
int main(void)
{
tinyuart_init();

// interrupts must be disbaled before calling the function
cli();

Expand Down Expand Up @@ -148,8 +146,12 @@ This project uses [**Semantic Versioning 2.0.0**][semver.org]. During initial de
The message of each commit contains detailed information about the changes made. The list below is a summary about all significant improvements.
- **0.1.0 (latest)** <br>
- initial release
- **0.1.2 (latest)** <br>
- update readme
- **0.1.1** <br>
- combine `_init()` and `_send_uint8_t()` functions
- **0.1.0** <br>
- initial release
<br>
Expand Down

0 comments on commit b4f7ce1

Please sign in to comment.