Skip to content

Commit

Permalink
v1.5.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
fhunleth committed Dec 17, 2023
1 parent 2c2bbfc commit 3569096
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

*I'm looking for help maintaining Circuits.UART. While it generally can be made
to do what people want, there are some significant improvements that are
possible that would be really nice to have. I just haven't had a project to
justify them and don't have time. Please consider reaching out if you have time
and interest.*

## v1.5.2

* Fixes
* Fix `Circuits.UART.read/2` spec. Thanks to @codestorm1.

## v1.5.1

* Fixes
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ To install `circuits_uart`:

```elixir
def deps do
[{:circuits_uart, "~> 1.3"}]
[{:circuits_uart, "~> 1.5"}]
end
```

Expand Down Expand Up @@ -327,7 +327,7 @@ system. They share the same name but are different concepts.
### I see weird things happening on my UART using nerves

By default nerves is configured so Linux and the Elixir console is redirected
to the serial0 interface. As a result, while using this interface, the buffer might
to the serial0 interface. As a result, while using this interface, the buffer might
be full of debug logs from your application, which could cause the port to timeout
when you are writing to it, or attempting to drain it `:port_timed_out`.

Expand All @@ -336,7 +336,7 @@ To disable this "pollution" you will have to edit:
- `cmdline.txt` and comment `console=serial0,115200`

To learn how to edit those files in your nerves setup you can check the advanced
configuration documentation of nerves:
configuration documentation of nerves:
https://hexdocs.pm/nerves/advanced-configuration.html#overwriting-files-in-the-root-filesystem

## Acknowledgments
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Circuits.UART.MixProject do
use Mix.Project

@version "1.5.1"
@version "1.5.2"
@source_url "https://github.com/elixir-circuits/circuits_uart"

def project do
Expand Down

0 comments on commit 3569096

Please sign in to comment.