Skip to content

Commit

Permalink
Merge pull request #792 from WildernessLabs/develop
Browse files Browse the repository at this point in the history
Publish latest to prod
  • Loading branch information
jorgedevs authored Aug 5, 2024
2 parents 9c9ffae + d3065de commit 2e92eb7
Show file tree
Hide file tree
Showing 19 changed files with 678 additions and 402 deletions.
2 changes: 1 addition & 1 deletion docfx/Common_Assets/Meadow_F7_Micro_Pinout.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 19 additions & 19 deletions docs/Hardware/Reference/Meadow_Hardware/Meadow_F7/F7v1/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,25 @@ The Meadow F7v1 was the inaugural Meadow F7 board that shipped as part of our Ki

The Meadow F7v1 board is feature packed:

* STMicroelectronics STM32F7 32-bit ARM Cortex-M7 based core MCU at up to 216MHz
* 2MB internal Flash memory
* 412Kb internal RAM
* 2D Graphics Acceleration (DMA2D) via ST Chrom-ART Accelerator
* Internal, low-power realtime clock (RTC)
* Cryptographic Hardware Acceleration for AES 128, 192, 256, triple DES, HASH (MD5, SHA-1, SHA-2), and HMAC
True random number generator
Floating point unit (FPU)
Secure Boot secure, encrypted firmware loader
* Espressif ESP32 (ESP-Pico-D4) Xtensa 32-bit dual-core LX6 up to 240MHz coprocessor.
* 2.4GHz WiFi 802.11 b/g/n with WFA, WPA/WPA2 and WAPI
* Bluetooth 4.2, 5.1
* 32MB external, onboard QSPI RAM
* 32MB external, onboard non-volatile Flash memory (~28MB available for user code)
* 25 Mixed Signal IO ports (6/8x Analog, 12x PWM, 3x UART, I2C, SPI, CAN, 2x DAC)
* On-board 2.4GHz ceramic chip antenna
* U.FL external antenna connector
* RoHS compliant (lead and hazardous materials-free)
* STMicroelectronics STM32F7 32-bit ARM Cortex-M7 based core MCU at up to 216MHz
* 2MB internal Flash memory
* 412Kb internal RAM
* 2D Graphics Acceleration (DMA2D) via ST Chrom-ART Accelerator
* Internal, low-power realtime clock (RTC)
* Cryptographic Hardware Acceleration for AES 128, 192, 256, triple DES, HASH (MD5, SHA-1, SHA-2), and HMAC
True random number generator
Floating point unit (FPU)
Secure Boot secure, encrypted firmware loader
* Espressif ESP32 (ESP-Pico-D4) Xtensa 32-bit dual-core LX6 up to 240MHz coprocessor.
* 2.4GHz WiFi 802.11 b/g/n with WFA, WPA/WPA2 and WAPI
* Bluetooth 4.2, 5.1
* 32MB external, onboard QSPI RAM
* 32MB external, onboard non-volatile Flash memory (~28MB available for user code)
* 25 Mixed Signal IO ports (6/8x Analog, 12x PWM, 3x UART, I2C, SPI, CAN, 2x DAC)
* On-board 2.4GHz ceramic chip antenna
* U.FL external antenna connector
* RoHS compliant (lead and hazardous materials-free)

## Pinout

![](/Common_Files/Meadow_F7_Micro_Pinout.svg)
![Illustration of Meadow board pin headers, including 3.3 volts on the second left pin from the USB connector and 5 volts on the third right pin from the USB connector.](/Common_Files/Meadow_F7_Micro_Pinout.svg)
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ subtitle: Constant polarity current.
[Direct current (DC)](https://en.wikipedia.org/wiki/Direct_current) specifies a unidirectional flow of electrons; that is they flow in one direction only.

The simple nature of direct current lends itself well to creating digital logic circuits, because it can represent binary `1` when `ON` (within a given voltage range), and binary `0` when `OFF` (at ground, or `0V`). It's also the type of current that batteries generate.

Because DC is used as the primary type of current in digital logic circuits, most of this tutorial will focus on DC circuits.

Direct curent is also used in [long distance, high power, electrical transmission lines](https://en.wikipedia.org/wiki/High-voltage_direct_current) (usually `>250kV`) because of lower electrical losses.

Meadow provides two _power rails_ that supply `5V` and `3.3V` direct current. The `3.3V` rail can be found on the left header, and the `5V` rail can be found on the right header:

![Illustration of Meadow board pin headers, including 3.3 volts on the second left pin from the USB connector and 5 volts on the third right pin from the USB connector.](/Common_Files/Meadow_F7_Micro_Pinout.svg)
![Illustration of Meadow board pin headers, including 3.3 volts on the second left pin from the USB connector and 5 volts on the third right pin from the USB connector.](/Common_Files/Meadow_F7v2_Micro_Pinout.svg)

### DC Power Symbols

Expand All @@ -36,13 +36,13 @@ The logic level is based on what `HIGH` means in a circuit, and falls into two c

#### Complementary Metal-Oxide-Semiconductor (CMOS)

CMOS is the technology that nearly all modern integrated circuits use. CMOS `HIGH` signals can vary but they're defined as the `V`<sub>`DD`</sub> level, which is usually `3.3V` in most common circuits. In fact, for nearly all circuits we'll create, we'll use the CMOS standard with `V`<sub>`DD`</sub> = `3.3V` as the upper end of the voltage supply source.
CMOS is the technology that nearly all modern integrated circuits use. CMOS `HIGH` signals can vary but they're defined as the `V`<sub>`DD`</sub> level, which is usually `3.3V` in most common circuits. In fact, for nearly all circuits we'll create, we'll use the CMOS standard with `V`<sub>`DD`</sub> = `3.3V` as the upper end of the voltage supply source.

Internally, most microcontrollers, CPUs, and other complex chips use a lower `V`<sub>`DD`</sub>, often `1.8V` or less, which allows them to operate at faster speeds. However, most microcontrollers use `3.3V` on their IO pins.

#### Transistor-Transistor-Logic (TTL)

TTL is based on older transistor technologies in which the `HIGH` signal is defined as `V`<sub>`CC`</sub>, which is usually `5V`.
TTL is based on older transistor technologies in which the `HIGH` signal is defined as `V`<sub>`CC`</sub>, which is usually `5V`.

#### VCC/VDD

Expand Down
Loading

0 comments on commit 2e92eb7

Please sign in to comment.