nuttx/boards/arm/stm32/emw3162
Alexander Lunev ff2dd12c3c bcm43xxx: fixed issues with unaligned buffers for DMA transfers.
This fixes the following errors:
- "stm32_dmacapable: stm32_dmacapable: burst crosses 1KiB
up_assert: Assertion failed at file:chip/stm32_sdio.c line: 2890 task: init"

- "stm32_dmacapable: stm32_dmacapable: burst crosses 1KiB
up_assert: Assertion failed at file:chip/stm32_sdio.c line: 2808 task: bcmf"

bcm43xxx: replaced all occurrences of "__attribute__((packed))" by
compiler independent "begin_packed_struct / end_packed_struct".
2021-07-28 13:47:04 -03:00
..
configs bcm43xxx: fixed issues with unaligned buffers for DMA transfers. 2021-07-28 13:47:04 -03:00
include
scripts bcm43xxx: fixed issues with unaligned buffers for DMA transfers. 2021-07-28 13:47:04 -03:00
src
Kconfig
README.txt

README
======

  EMW3162 board (https://www.waveshare.com/EMW3162.htm) features the
  STM32F205RG MCU and Broadcom BCM43362KUBG Wi-Fi chip.
  The STM32F205RG is a 120 MHz Cortex-M3 operation with 1Mbit Flash
  memory and 128kbytes.

Contents
========

  - Configuring NuttX for the EMW3162 board
  - Configuring NuttX to use your Wireless Router (aka Access Point)
  - Programming Flash
  - NSH via telnet
  - Serial console configuration

Configuring NuttX for the EMW3162 board
=======================================

     $ cd nuttx
     $ make apps_distclean
     $ make distclean
     $ ./tools/configure.sh emw3162:wlan

Configuring NuttX to use your Wireless Router (aka Access Point)
================================================================

  $ make menuconfig

  Browse the menus this way:

  Application Configuration  --->
      NSH Library  --->
          Networking Configuration  --->
              WAPI Configuration  --->
                  (myApSSID) SSID
                  (mySSIDpassphrase) Passprhase

  Replace the SSID from myApSSID with your wireless router name and
  the Passprhase with your WiFi password.

  Exit and save.

  Finally just compile NuttX:

    $ make

Programming Flash
=================

  Flash memory can be programmed by stlink toolset
  (https://github.com/stlink-org/stlink) and ST-LINK V2 programmer
  (via SWD interface) as follows:

    $ sudo st-flash write nuttx.bin 0x8000000

NSH via telnet
==============

  After you successfully downloaded nuttx.bin, reset the board and it
  automatically connects to the corresponding wifi AP. You may login
  your router to see its IP address. Assume that it's 192.168.1.111

  Open a terminal on your computer and telnet your EMW3162 board:

    $ telnet 192.168.1.111
    Trying 192.168.1.111...
    Connected to 192.168.1.111.
    Escape character is '^]'

    NuttShell (NSH) NuttX-10.1.0-RC1
    nsh>

Serial console configuration
============================

  Connect a USB/Serial 3.3V dongle to GND, TXD and RXD pins of EMW3162 board.
  Then use some serial console client (minicom, picocom, teraterm, etc) confi-
  gured to 115200 8n1 without software or hardware flow control.

  Reset the board and you should see NuttX starting in the serial.