mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #6235 from gorazdko/lpc546xx-fixes
mcu_lpc546xx: move "release_versions" to children and fix clockpull/6282/merge
commit
fb0eba4cd2
|
|
@ -41,7 +41,6 @@ void ADC_ClockPower_Configuration(void)
|
||||||
POWER_DisablePD(kPDRUNCFG_PD_TEMPS); /* Power on the temperature sensor. */
|
POWER_DisablePD(kPDRUNCFG_PD_TEMPS); /* Power on the temperature sensor. */
|
||||||
|
|
||||||
/* Enable the clock. */
|
/* Enable the clock. */
|
||||||
CLOCK_AttachClk(kFRO12M_to_MAIN_CLK);
|
|
||||||
CLOCK_EnableClock(kCLOCK_Adc0);
|
CLOCK_EnableClock(kCLOCK_Adc0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -73,8 +73,6 @@ void ADC_ClockPower_Configuration(void)
|
||||||
POWER_DisablePD(kPDRUNCFG_PD_VREFP); /* Power on the reference voltage source. */
|
POWER_DisablePD(kPDRUNCFG_PD_VREFP); /* Power on the reference voltage source. */
|
||||||
POWER_DisablePD(kPDRUNCFG_PD_TS); /* Power on the temperature sensor. */
|
POWER_DisablePD(kPDRUNCFG_PD_TS); /* Power on the temperature sensor. */
|
||||||
|
|
||||||
/* Enable the clock. */
|
|
||||||
CLOCK_AttachClk(kFRO12M_to_MAIN_CLK);
|
|
||||||
|
|
||||||
/* CLOCK_AttachClk(kMAIN_CLK_to_ADC_CLK); */
|
/* CLOCK_AttachClk(kMAIN_CLK_to_ADC_CLK); */
|
||||||
/* Sync clock source is not used. Using sync clock source and would be divided by 2.
|
/* Sync clock source is not used. Using sync clock source and would be divided by 2.
|
||||||
|
|
|
||||||
|
|
@ -121,8 +121,6 @@ void ADC_ClockPower_Configuration(void)
|
||||||
POWER_DisablePD(kPDRUNCFG_PD_VREFP); /* Power on the reference voltage source. */
|
POWER_DisablePD(kPDRUNCFG_PD_VREFP); /* Power on the reference voltage source. */
|
||||||
POWER_DisablePD(kPDRUNCFG_PD_TS); /* Power on the temperature sensor. */
|
POWER_DisablePD(kPDRUNCFG_PD_TS); /* Power on the temperature sensor. */
|
||||||
|
|
||||||
/* Enable the clock. */
|
|
||||||
CLOCK_AttachClk(kFRO12M_to_MAIN_CLK);
|
|
||||||
|
|
||||||
/* CLOCK_AttachClk(kMAIN_CLK_to_ADC_CLK); */
|
/* CLOCK_AttachClk(kMAIN_CLK_to_ADC_CLK); */
|
||||||
/* Sync clock source is not used. Using sync clock source and would be divided by 2.
|
/* Sync clock source is not used. Using sync clock source and would be divided by 2.
|
||||||
|
|
|
||||||
|
|
@ -755,18 +755,19 @@
|
||||||
"inherits": ["Target"],
|
"inherits": ["Target"],
|
||||||
"device_has": ["ANALOGIN", "I2C", "I2CSLAVE", "INTERRUPTIN", "PORTIN", "PORTINOUT", "PORTOUT", "RTC", "SERIAL", "SLEEP", "SPI", "SPISLAVE", "STDIO_MESSAGES"],
|
"device_has": ["ANALOGIN", "I2C", "I2CSLAVE", "INTERRUPTIN", "PORTIN", "PORTINOUT", "PORTOUT", "RTC", "SERIAL", "SLEEP", "SPI", "SPISLAVE", "STDIO_MESSAGES"],
|
||||||
"features": ["LWIP"],
|
"features": ["LWIP"],
|
||||||
"release_versions": ["2", "5"],
|
|
||||||
"device_name" : "LPC54628J512ET180"
|
"device_name" : "LPC54628J512ET180"
|
||||||
},
|
},
|
||||||
"LPC546XX": {
|
"LPC546XX": {
|
||||||
"supported_form_factors": ["ARDUINO"],
|
"supported_form_factors": ["ARDUINO"],
|
||||||
"inherits": ["MCU_LPC546XX"],
|
"inherits": ["MCU_LPC546XX"],
|
||||||
"detect_code": ["1056"]
|
"detect_code": ["1056"],
|
||||||
|
"release_versions": ["2", "5"]
|
||||||
},
|
},
|
||||||
"FF_LPC546XX": {
|
"FF_LPC546XX": {
|
||||||
"inherits": ["MCU_LPC546XX"],
|
"inherits": ["MCU_LPC546XX"],
|
||||||
"extra_labels_remove" : ["LPCXpresso"],
|
"extra_labels_remove" : ["LPCXpresso"],
|
||||||
"detect_code": ["8081"]
|
"detect_code": ["8081"],
|
||||||
|
"release_versions": ["2", "5"]
|
||||||
},
|
},
|
||||||
"NUCLEO_F030R8": {
|
"NUCLEO_F030R8": {
|
||||||
"inherits": ["FAMILY_STM32"],
|
"inherits": ["FAMILY_STM32"],
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue