Skip to content

Commit de4d4ca

Browse files
Sadik.OzerSadik.Ozer
authored andcommitted
Remove unexisting file from CMakeList
Remove unneeded files Remove const float value Signed-off-by: Sadik.Ozer <[email protected]>
1 parent 66ee198 commit de4d4ca

File tree

6 files changed

+1
-30
lines changed

6 files changed

+1
-30
lines changed

targets/TARGET_Maxim/TARGET_MAX32660/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ target_sources(mbed-max32660
5656
${MXM_SOURCE_DIR}/SYS/mxc_lock.c
5757
${MXM_SOURCE_DIR}/SYS/pins_me11.c
5858
${MXM_SOURCE_DIR}/SYS/sys_me11.c
59-
${MXM_SOURCE_DIR}/SYS/nvic_table.c
6059

6160
${MXM_SOURCE_DIR}/DMA/dma_me11.c
6261
${MXM_SOURCE_DIR}/DMA/dma_reva.c

targets/TARGET_Maxim/TARGET_MAX32660/Libraries/CMSIS/Lib/license.txt

Lines changed: 0 additions & 28 deletions
This file was deleted.

targets/TARGET_Maxim/TARGET_MAX32660/Libraries/PeriphDrivers/Source/UART/uart_reva.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ int MXC_UART_RevA_GetFrequency (mxc_uart_reva_regs_t* uart)
225225
decimalDiv += 3;
226226
}
227227

228-
uartDiv += decimalDiv / 128.0;
228+
uartDiv += decimalDiv / (float)128;
229229
uartDiv *= (1 << (7 - (uart->baud0 & MXC_F_UART_REVA_BAUD0_FACTOR)));
230230

231231
return (int) ( (float) periphClock / uartDiv);

0 commit comments

Comments
 (0)