arrangements for easier porting

sipo
Ondřej Hruška 7 years ago
parent e1ce976278
commit 2f24d3789d
Signed by: MightyPork
GPG Key ID: 2C5FD5035250423D
  1. 8
      platform/plat_compat.h
  2. 18
      platform/platform.c

@ -5,9 +5,10 @@
#ifndef GEX_PLAT_COMPAT_H
#define GEX_PLAT_COMPAT_H
// platform name for the version string
#define GEX_PLATFORM "STM32F103"
#ifdef GEX_PLAT_F103_BLUEPILL
// platform name for the version string
#define GEX_PLATFORM "STM32F103-Bluepill"
#include <stm32f1xx.h>
#include <stm32f1xx_hal.h>
#include <stm32f1xx_ll_adc.h>
@ -48,5 +49,8 @@
// Status LED config
#define STATUS_LED_PORT 'C'
#define STATUS_LED_PIN 13
#else
#error "BAD PLATFORM! Please select GEX platform using a -DGEX_PLAT_* compile flag"
#endif
#endif //GEX_PLAT_COMPAT_H

@ -7,18 +7,20 @@
#include "USB/usb_device.h"
#include "framework/resources.h"
// ----- SUPPORTED UNITS -----
#include "framework/unit_registry.h"
#include "units/pin/unit_pin.h"
#include "units/neopixel/unit_neopixel.h"
// ----- SUPPORTED UNITS -----
void plat_register_units(void)
{
ureg_add_type(&UNIT_PIN);
ureg_add_type(&UNIT_NEOPIXEL);
// Platform-specific units could be added here
}
@ -32,6 +34,8 @@ void plat_init_resources(void)
__HAL_RCC_GPIOD_CLK_ENABLE();
__HAL_RCC_GPIOE_CLK_ENABLE();
#ifdef GEX_PLAT_F103_BLUEPILL
// Platform F103C8T6 - free all present resources
{
rsc_free(NULL, R_ADC1);
@ -73,15 +77,21 @@ void plat_init_resources(void)
assert_param(ok);
}
#endif
}
// ---- USB reconnect ----
/** USB re-connect */
/**
* USB re-connect (to apply change of the LOCK jumper)
*/
void plat_usb_reconnect(void)
{
#ifdef GEX_PLAT_F103_BLUEPILL
// F103 doesn't have pull-up control, this is probably the best we can do
// This does not seem to trigger descriptors reload.
USBD_LL_Reset(&hUsbDeviceFS);
#endif
}

Loading…
Cancel
Save