diff --git a/common/source/docs/common-MicoAir405v2.rst b/common/source/docs/common-MicoAir405v2.rst
new file mode 100644
index 0000000000..6c0f7a64c8
--- /dev/null
+++ b/common/source/docs/common-MicoAir405v2.rst
@@ -0,0 +1,132 @@
+.. _common-MicoAir405v2:
+
+============
+MicoAir405v2
+============
+The MicoAir405v2 is a autocpilot produced by `MicoAir `_.
+
+.. image:: ../../../images/MicoAir405v2_FrontView.jpg
+ :target: ../_images/MicoAir405v2_FrontView.jpg
+
+
+.. image:: ../../../images/MicoAir405v2_BackView.jpg
+ :target: ../_images/MicoAir405v2_BackView.jpg
+
+
+Where to Buy
+============
+
+ - `AliExpress `__
+
+Specifications
+==============
+
+- **Processor**
+
+ - STM32F405 microcontroller
+ - AT7456E OSD
+
+- **Sensors**
+
+ - BMI088 IMU IMU (accel and gyro)
+ - SPL06 barometer
+
+- **Power**
+
+ - 2S - 6S Lipo input voltage with voltage monitoring
+ - 9V 3A BEC for powering Video Transmitter
+ - 5V 3A BEC for peripherals
+
+- **Interfaces**
+
+ - 10x PWM outputs
+ - 1x SBUS RC input
+ - 6x UARTs/serial for GPS and other peripherals
+ - 1x I2C port for external compass
+ - Camera/VTX/HD(DJI) VTX connectors
+ - Micro-C USB port
+ - MicroSD Card Slot for logging
+ - External current monitor input
+
+Pinout
+======
+
+
+.. image::../../../images/MicoAir405v2_PortsConnection.jpg
+ :target: ../_images/MicoAir405v2_PortsConnection.jpg
+
+
+UART Mapping
+============
+
+The UARTs are marked Rxn and Tn in the above pinouts. The Rxn pin is the
+receive pin for UARTn. The Txn pin is the transmit pin for UARTn.
+
+ - SERIAL0 -> USB
+ - SERIAL1 -> UART1 (MAVLink2, DMA-enabled)
+ - SERIAL2 -> UART2 (DisplayPort, TX2 only DMA-enabled)
+ - SERIAL3 -> UART3 (GPS)
+ - SERIAL4 -> UART4 (MAVLink2, TX only DMA-enabled)
+ - SERIAL5 -> UART5 (RX pin only,ESC Telemetry)
+ - SERIAL6 -> UART6 (RX6 is inverted from SBUS pin, no DMA on TX6)
+
+RC Input
+========
+
+The default RC input is SBUS only on SBUS pin. PPM is not supported. Other RC protocols must use another UART port such as UART1 or UART4, and set its protocol to receive RC data: ``SERIALx_PROTOCOL=23`` and change :ref:`SERIAL6_PROTOCOL` to something other than its default protocol of '23'. If using CRSF/ELRS, UART1 should be used since it has full DMA. If using another UART for RC input:
+
+- FPort requires connection to the TX of the UART and ``SERIALx_OPTIONS`` be set to "7".
+
+- CRSF also requires a TX connection, and automatically provides telemetry. Set ``SERIALx_OPTIONS`` to "0".
+
+- SRXL2 requires a connection to TX and automatically provides telemetry. Set ``SERIALx_OPTIONS>`` to "4".
+
+OSD Support
+===========
+
+The MicoAir405v2 supports analog OSD using OSD_TYPE 1 (MAX7456 driver) using the CAM and VTX connectors. DisplayPort HD OSD via the DJI connector can be enabled simultaneously by setting :ref:`OSD_TYPE` = 5. See below.
+
+HD VTX Support
+==============
+
+The SH1.0-6P connector supports a standard DJI HD VTX connection. Pin 1 of the connector is 9v so be careful not to connect this to a peripheral requiring 5v.
+
+PWM Output
+==========
+
+The MicoAir405v2 supports up to 10 PWM outputs. Outputs 1-8 also support DShot. Outputs 1-4 support bi-directional DShot. Outputs are grouped and each group must use the same output protocol:
+
+- 1,2,5,6 are group1
+- 3, 4 are group 2
+- 7,8 are group 3
+- 9,10 are in group 4
+
+Battery Monitoring
+==================
+
+The board has a built-in voltage sensor via the VBAT pin, but no internal current sensor. An external current sensor can be connected to the Curr pin. Default parameters for both internal voltage and external current monitoring are set by default to :
+
+ - :ref:`BATT_MONITOR` 4
+ - :ref:`BATT_VOLT_PIN` 10
+ - :ref:`BATT_CURR_PIN` 11
+ - :ref:`BATT_VOLT_MULT` 21.2
+ - :ref:`BATT_AMP_PERVLT` 40.2
+
+Compass
+=======
+
+The MicoAir405v2 does not have a built-in compass, but you can attach an external compass using I2C on the SDA and SCL connector.
+
+Firmware
+========
+
+Firmware for this board can be found `here `_ in sub-folders labeled "MicoAir405v2".
+
+Loading Firmware
+================
+
+Initial firmware load can be done with DFU by plugging in USB with the bootloader button pressed. Then you should load the "with_bl.hex" firmware, using your favorite DFU loading tool.
+
+Once the initial firmware is loaded you can update the firmware using any ArduPilot ground station software. Updates should be done with the "\*.apj" firmware files.
+
+[copywiki destination="plane,copter,rover,blimp"]
\ No newline at end of file
diff --git a/common/source/docs/common-autopilots.rst b/common/source/docs/common-autopilots.rst
index c59378d773..05269e57e3 100644
--- a/common/source/docs/common-autopilots.rst
+++ b/common/source/docs/common-autopilots.rst
@@ -122,6 +122,7 @@ Closed Hardware
MakeFlyEasy PixPilot-V6
Mateksys F405 TE Family
Mateksys H743-Wing/MINI/SLIM/WLITE
+ MicoAir405v22
ModalAI Flight core
mRo ControlZero Classic
mRo ControlZero F7
diff --git a/images/MicoAir405v2_BackView.jpg b/images/MicoAir405v2_BackView.jpg
new file mode 100644
index 0000000000..fee8285205
Binary files /dev/null and b/images/MicoAir405v2_BackView.jpg differ
diff --git a/images/MicoAir405v2_FrontView.jpg b/images/MicoAir405v2_FrontView.jpg
new file mode 100644
index 0000000000..1d4e641dfc
Binary files /dev/null and b/images/MicoAir405v2_FrontView.jpg differ
diff --git a/images/MicoAir405v2_PortsConnection.jpg b/images/MicoAir405v2_PortsConnection.jpg
new file mode 100644
index 0000000000..3c61b64578
Binary files /dev/null and b/images/MicoAir405v2_PortsConnection.jpg differ