|
3 | 3 | - [Installation](#installation) |
4 | 4 | - [Usage](#usage) |
5 | 5 | - [Issues](#issues) |
6 | | -- [Theming](#theming) |
7 | | -- [Building](#building) |
| 6 | +- [Development](#development) |
8 | 7 | - [Acknowledgements](#acknowledgements) |
9 | 8 | - [License](#license) |
10 | 9 |
|
@@ -85,24 +84,18 @@ The roms must be packed with [LCD-Game-Shrinker](https://github.com/bzhxx/LCD-Ga |
85 | 84 |
|
86 | 85 | ## Wifi |
87 | 86 |
|
88 | | -To use wifi you will need to create a `/retro-go/config/wifi.json` config file. Its content should look like this: |
| 87 | +To use wifi you will need to create a `/retro-go/config/wifi.json` config file. You can define up to 4 different networks, then selectable in the menu. Its content should look like this: |
89 | 88 |
|
90 | | -````json |
91 | | -{ |
92 | | - "ssid": "my-network", |
93 | | - "password": "my-password" |
94 | | -} |
95 | | -```` |
96 | | - |
97 | | -Multiple networks can be defined using the following format (then selectable in the Options menu): |
98 | 89 | ````json |
99 | 90 | { |
100 | 91 | "ssid0": "my-network", |
101 | 92 | "password0": "my-password", |
102 | | - "ssid1": "my-network", |
| 93 | + "ssid1": "my-other-network", |
103 | 94 | "password1": "my-password", |
104 | | - "ssid2": "my-network", |
105 | | - "password2": "my-password" |
| 95 | + "ssid2": "my-third-network", |
| 96 | + "password2": "my-password", |
| 97 | + "ssid3": "my-last-network", |
| 98 | + "password3": "my-password" |
106 | 99 | } |
107 | 100 | ```` |
108 | 101 |
|
@@ -162,12 +155,12 @@ of losing data when powering down too quickly. Also note that when *resuming* a |
162 | 155 | to a save state if present. |
163 | 156 |
|
164 | 157 |
|
165 | | -# Theming |
166 | | -Instructions moved to [THEMING.md](THEMING.md). |
167 | | - |
| 158 | +# Development |
| 159 | +If you wish to build or modify Retro-Go, you can find help in the following documents: |
168 | 160 |
|
169 | | -# Building |
170 | | -Instructions moved to [BUILDING.md](BUILDING.md). |
| 161 | +- Build instructions in [BUILDING.md](BUILDING.md) |
| 162 | +- Theming instructions [THEMING.md](THEMING.md) |
| 163 | +- Porting instructions in [PORTING.md](PORTING.md) |
171 | 164 |
|
172 | 165 |
|
173 | 166 | # Acknowledgements |
|
0 commit comments