https://github.com/joeferner/stm32-cc3000
CC3000 Driver for STM32 Microcontrollers
https://github.com/joeferner/stm32-cc3000
Last synced: over 1 year ago
JSON representation
CC3000 Driver for STM32 Microcontrollers
- Host: GitHub
- URL: https://github.com/joeferner/stm32-cc3000
- Owner: joeferner
- License: mit
- Created: 2013-11-18T14:51:12.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2017-03-13T01:34:26.000Z (over 9 years ago)
- Last Synced: 2025-02-28T13:19:29.647Z (over 1 year ago)
- Language: C
- Size: 204 KB
- Stars: 14
- Watchers: 6
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
To run main.c you first need to create a file called "connection_info.h" with the following:
```
#define WLAN_SSID "apname"
#define WLAN_PASS "appassword"
// Security can be WLAN_SEC_UNSEC, WLAN_SEC_WEP, WLAN_SEC_WPA or WLAN_SEC_WPA2
#define WLAN_SECURITY WLAN_SEC_WPA2
```