Skip to content
Tony Cho edited this page Mar 4, 2015 · 14 revisions

Introduction

This wiki page provides information on Atmel 802.11/BT Combo SoC ATWILC3000 and Atmel 802.11 SoC ATWILC1000 drivers. For more information, visit Atmel smartconnect. The ATWILC1000 is a single chip IEEE 802.11 b/g/n fullMAC link controller, and ATWILC3000 is a single chip IEEE 802.11 b/g/n and Bluetooth 4.0 optimized for low power mobile applications. Enjoy the tutorials and useful information.

Tutorials

Resources

Download

Download the official release here:

https://github.com/atwilc3000/driver/releases

https://github.com/atwilc3000/firmware/releases

The release candidates are also available in the following link.

For the kernel driver: git clone https://github.com/atwilc3000/driver.git

For the firmware: git clone https://github.com/atwilc3000/firmware.git

Build

  • Go to the wireless directory: cd /kernel/drivers/wireless

  • Create the atmel directory: mkdir atmel

  • Place the wireless driver into the atmel directory.

  • Modify the /wireless/Kconfig to add wireless driver Kconfig.

# Add Atmel Kconfig 
source "drivers/net/wireless/atmel/Kconfig
  • Modify the /wireless/Makefile to add wireless driver in the Kbuild.
# Add Atmel here
obj-$(CONFIG_ATMEL_SMARTCONNECT) += atmel/
  • Configure the kernel with your favorite, for example, make menuconfig.

  • Build the kernel.

For more practical information, refer to the specific platform quick start guide.

Clone this wiki locally