Skip to content

Commit cff3e13

Browse files
authored
Fixed typo
1 parent c5bcc3f commit cff3e13

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

README.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ You have 2 choices here. Uploading the bin files is easier but not as good for d
7272
### Uploading the bin files
7373

7474
**Note:** the 512kb version won't have the full MAC vendor list.
75+
The NodeMCU and every other board which uses the ESP-12 has 4mb flash on it.
7576

7677
**0** Download the current release from [here](https://github.com/spacehuhn/esp8266_deauther/releases)
7778

@@ -110,22 +111,21 @@ Make sure you select the right com-port, the right upload size of your ESP8266 a
110111
**10** Open `user_interface.h` with a text editor
111112

112113
**11** Scroll down and before `#endif` add following lines:
113-
```c++
114-
typedef void (*freedom_outside_cb_t)(uint8 status);
115-
int wifi_register_send_pkt_freedom_cb(freedom_outside_cb_t cb);
116-
void wifi_unregister_send_pkt_freedom_cb(void);
117-
int wifi_send_pkt_freedom(uint8 *buf, int len, bool sys_seq);
118114

119-
```
115+
`typedef void (*freedom_outside_cb_t)(uint8 status);`
116+
`int wifi_register_send_pkt_freedom_cb(freedom_outside_cb_t cb);`
117+
`void wifi_unregister_send_pkt_freedom_cb(void);`
118+
`int wifi_send_pkt_freedom(uint8 *buf, int len, bool sys_seq);`
119+
120120
![screenshot of notepad, copy paste the right code](https://raw.githubusercontent.com/spacehuhn/esp8266_deauther/master/screenshots/notepad_screenshot_1.JPG)
121121

122122
**don't forget to save!**
123123

124124
**12** Go to the SDK_fix folder of this project
125125

126-
**13** Copy ESP8266WiFi.cpp and ESP8266WiFi.h
126+
**13** Copy ESP8266Wi-Fi.cpp and ESP8266Wi-Fi.h
127127

128-
**14** Past these files here `packages` > `esp8266` > `hardware` > `esp8266` > `2.0.0` > `libraries` > `ESP8266WiFi` > `src`
128+
**14** Past these files here `packages` > `esp8266` > `hardware` > `esp8266` > `2.0.0` > `libraries` > `ESP8266Wi-Fi` > `src`
129129

130130
**15** Open `esp8266_deauther` > `esp8266_deauther.ino` in Arduino
131131

@@ -189,8 +189,7 @@ Try out switching the browser or open the website with another device.
189189
If you see 0 pkts/s on the website you've made a mistake. Check if you have followed the the installation steps correctly and that the right SDK installed, it must be version 2.0.0!
190190
If it can send packets but your target don't loose its connection then the Wi-Fi router uses [802.11w](#how-to-protect-against-it) and it's protected against such attacks or they communicate via 5 GHz Wi-Fi, which the ESP8266 doesn't support.
191191

192-
193-
###If you have other questions or problems with the ESP8266 you can also check out the official [community forum](http://www.esp8266.com/).
192+
### If you have other questions or problems with the ESP8266 you can also check out the official [community forum](http://www.esp8266.com/).
194193

195194

196195
## License

0 commit comments

Comments
 (0)