Skip to content

Commit

Permalink
Add Sparkfun MicroMod STM32
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna committed Dec 20, 2023
1 parent 368cc6e commit c0cfb09
Show file tree
Hide file tree
Showing 3 changed files with 138 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build_arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ jobs:
- 'stm32f411ve_discovery'
- 'stm32f411ce_blackpill'
- 'stm32f401_blackpill'
- 'sparkfun_micromod_stm32'
- 'sparkfun_stm32_thing_plus'
# stm32l4
- 'swan_r5'
Expand Down
125 changes: 125 additions & 0 deletions ports/stm32f4/boards/sparkfun_micromod_stm32/board.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
/*
* The MIT License (MIT)
*
* Copyright (c) 2018 Ha Thach for Adafruit Industries
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/

#ifndef BOARD_H_
#define BOARD_H_

//--------------------------------------------------------------------+
// Button
//--------------------------------------------------------------------+

//--------------------------------------------------------------------+
// LED
//--------------------------------------------------------------------+

#define LED_PORT GPIOA
#define LED_PIN GPIO_PIN_15
#define LED_STATE_ON 1

//--------------------------------------------------------------------+
// Neopixel
//--------------------------------------------------------------------+

// Number of neopixels
#define NEOPIXEL_NUMBER 0
// Brightness percentage from 1 to 255
#define NEOPIXEL_BRIGHTNESS 0x10

#define NEOPIXEL_PORT GPIOC
#define NEOPIXEL_PIN GPIO_PIN_0
#define NEOPIXEL_PIN_MODE GPIO_MODE_OUTPUT_PP

//--------------------------------------------------------------------+
// Flash
//--------------------------------------------------------------------+

// Flash size of the board
#define BOARD_FLASH_SIZE (1024 * 1024)

//--------------------------------------------------------------------+
// USB UF2
//--------------------------------------------------------------------+

#define USB_VID 0x1B4F
#define USB_PID 0x002D
#define USB_MANUFACTURER "Sparkfun"
#define USB_PRODUCT "MicroMod STM32F405"

#define UF2_PRODUCT_NAME USB_MANUFACTURER " " USB_PRODUCT
#define UF2_BOARD_ID "STM32F405-MicroMod-v2.0"
#define UF2_VOLUME_LABEL "MM-F405BOOT"
#define UF2_INDEX_URL "https://www.sparkfun.com/products/21326"

#define USB_NO_VBUS_PIN 1

//--------------------------------------------------------------------+
// UART
//--------------------------------------------------------------------+

#define UART_DEV USART3
#define UART_CLOCK_ENABLE __HAL_RCC_USART3_CLK_ENABLE
#define UART_CLOCK_DISABLE __HAL_RCC_USART3_CLK_DISABLE
#define UART_GPIO_PORT GPIOB
#define UART_GPIO_AF GPIO_AF7_USART3
#define UART_TX_PIN GPIO_PIN_10
#define UART_RX_PIN GPIO_PIN_11

//--------------------------------------------------------------------+
// RCC Clock
//--------------------------------------------------------------------+
static inline void clock_init(void)
{
RCC_ClkInitTypeDef RCC_ClkInitStruct;
RCC_OscInitTypeDef RCC_OscInitStruct;

/* Enable Power Control clock */
__HAL_RCC_PWR_CLK_ENABLE();

/* The voltage scaling allows optimizing the power consumption when the device is
clocked below the maximum system frequency, to update the voltage scaling value
regarding system frequency refer to product datasheet. */
__HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1);

/* Enable HSE Oscillator and activate PLL with HSE as source */
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
RCC_OscInitStruct.HSEState = RCC_HSE_ON;
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
RCC_OscInitStruct.PLL.PLLM = HSE_VALUE/1000000;
RCC_OscInitStruct.PLL.PLLN = 336;
RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2;
RCC_OscInitStruct.PLL.PLLQ = 7;
HAL_RCC_OscConfig(&RCC_OscInitStruct);

/* Select PLL as system clock source and configure the HCLK, PCLK1 and PCLK2
clocks dividers */
RCC_ClkInitStruct.ClockType = (RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2);
RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV4;
RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV2;
HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_5);
}

#endif
12 changes: 12 additions & 0 deletions ports/stm32f4/boards/sparkfun_micromod_stm32/board.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
CFLAGS += \
-DSTM32F405xx \
-DHSE_VALUE=12000000U

SRC_S += \
$(ST_CMSIS)/Source/Templates/gcc/startup_stm32f405xx.s

# For flash-jlink target
JLINK_DEVICE = stm32f405rg

flash: flash-dfu-util
erase: erase-dfu-util

0 comments on commit c0cfb09

Please sign in to comment.