summaryrefslogtreecommitdiff
path: root/platforms/chibios/boards/BONSAI_C4/configs/config.h
blob: 193b028bdec3a39f9114a35b4bb351633d675504 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/* Copyright 2022 David Hoelscher, customMK
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */
#pragma once

// Bonsai C4 includes Vbus sensing; derived designs that use PA9 for other purposes
// may disable Vbus sensing with #define BOARD_OTG_NOVBUSSENS 1

#ifndef EARLY_INIT_PERFORM_BOOTLOADER_JUMP
#    define EARLY_INIT_PERFORM_BOOTLOADER_JUMP TRUE
#endif

// FRAM configuration
#ifndef EXTERNAL_EEPROM_SPI_SLAVE_SELECT_PIN
#    define EEPROM_SPI_MB85RS64V
#    define EXTERNAL_EEPROM_SPI_SLAVE_SELECT_PIN PAL_LINE(GPIOA, 0)
#    define EXTERNAL_EEPROM_SPI_CLOCK_DIVISOR 8 // 96MHz / 8 = 12MHz; max supported by MB85R64 is 20MHz
#endif

// External flash configuration
#ifndef EXTERNAL_FLASH_SPI_SLAVE_SELECT_PIN
#    define EXTERNAL_FLASH_SPI_SLAVE_SELECT_PIN PAL_LINE(GPIOB, 12)
#    define EXTERNAL_FLASH_SPI_CLOCK_DIVISOR 2  // 48MHz; max supported by W25Q128JV is 133MHz
#    define EXTERNAL_FLASH_BYTE_COUNT (16 * 1024 * 1024)  //128Mbit or 16MByte
#    define EXTERNAL_FLASH_PAGE_SIZE 256
#    define EXTERNAL_FLASH_SPI_TIMEOUT 200000 //datasheet max is 200 seconds for flash chip erase
#endif

// SPI Configuration (needed for FRAM and FLASH)
#ifndef SPI_DRIVER
#    define SPI_DRIVER SPID1
#endif
#ifndef SPI_SCK_PIN
#    define SPI_SCK_PIN PAL_LINE(GPIOB, 3)
#endif
#ifndef SPI_MOSI_PIN
#    define SPI_MOSI_PIN PAL_LINE(GPIOB, 5)
#endif
#ifndef SPI_MISO_PIN
#    define SPI_MISO_PIN PAL_LINE(GPIOB, 4)
#endif


// I2C Configuration
#ifdef CONVERT_TO_BONSAI_C4
#    ifndef I2C1_SCL_PIN
#        define I2C1_SCL_PIN PAL_LINE(GPIOB, 6)
#    endif
#    ifndef I2C1_SDA_PIN
#        define I2C1_SDA_PIN PAL_LINE(GPIOB, 9)
#    endif
#endif

// WS2812-style LED control on pin A10
#ifdef WS2812_PWM
#    ifndef WS2812_DI_PIN
#        define WS2812_DI_PIN PAL_LINE(GPIOA, 10)
#    endif
#    ifndef WS2812_PWM_DRIVER
#        define WS2812_PWM_DRIVER PWMD1
#    endif
#    ifndef WS2812_PWM_CHANNEL
#        define WS2812_PWM_CHANNEL 3
#    endif
#    ifndef WS2812_PWM_PAL_MODE
#        define WS2812_PWM_PAL_MODE 1
#    endif
#    ifndef WS2812_DMA_STREAM
#        define WS2812_DMA_STREAM STM32_DMA2_STREAM5
#    endif
#    ifndef WS2812_DMA_CHANNEL
#        define WS2812_DMA_CHANNEL 6
#    endif
#endif

#ifndef USB_VBUS_PIN
#    define USB_VBUS_PIN PAL_LINE(GPIOA, 9)
#endif