Skip to content

Commit

Permalink
Version 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
amclain committed Dec 10, 2022
1 parent 910d378 commit d74d9f2
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## v0.4.3

This release fixes issues with the WILC3000 Wi-Fi module becoming unresponsive
and potentially triggering the watchdog in access point (AP) mode. After
reconfiguring the interface at runtime when it's in AP mode, reset the
module with:

```elixir
cmd "rmmod wilc-sdio"
cmd "modprobe wilc-sdio"
```

* Changes
* Switch to the mainline Linux WILC driver

## v0.4.2

* Changes
Expand Down
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,16 @@ pins are numbered logically in sequence from `PA0` (`gpio0`) to
The WLSOM1 contains a ATWILC3000 Wifi / Bluetooth module. Wifi can be enabled
by loading the kernel module.

```text
iex> System.cmd("modprobe", ["wilc-sdio"])
```elixir
iex> cmd "modprobe wilc-sdio"
```

If the Wi-Fi module is set to access point (AP) mode, it will need to be reset
if its VintageNet configuration is updated at runtime.

```elixir
cmd "rmmod wilc-sdio"
cmd "modprobe wilc-sdio"
```

# Ethernet
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.2
0.4.3

0 comments on commit d74d9f2

Please sign in to comment.