-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Initial ports for u-blox C029/EVK-ODIN-W2 and HI2110. #2610
Changes from all commits
7345ea9
4798653
6fb4265
bb27b84
5a30594
279104d
b9602f1
c0d984d
877bf86
acdcb60
65af7e7
b227a9e
93fef2f
849dc4e
c3306ef
b6cfabc
f3b8798
8544e5e
1d62c48
a18ac07
75dd676
3226c75
a5e6a91
0d13030
40e2f36
baea3fb
e144409
dfe78ee
0b15bae
73d1ebe
16698ff
0e451ad
4abf063
b0c6c61
01397f3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1163,14 +1163,16 @@ | |
"UBLOX_C029": { | ||
"supported_form_factors": ["ARDUINO"], | ||
"core": "Cortex-M4F", | ||
"default_toolchain": "uARM", | ||
"default_toolchain": "GCC_ARM", | ||
"supported_toolchains": ["ARM", "uARM", "GCC_ARM", "IAR"], | ||
"extra_labels": ["STM", "STM32F4", "STM32F439", "STM32F439ZI"], | ||
"macros": ["HSE_VALUE=24000000", "HSE_STARTUP_TIMEOUT=5000"], | ||
"macros": ["HSE_VALUE=24000000", "HSE_STARTUP_TIMEOUT=5000", "CB_INTERFACE_SDIO","CB_CHIP_WL18XX","SUPPORT_80211D_ALWAYS","WLAN_ENABLED"], | ||
"inherits": ["Target"], | ||
"device_has": ["ANALOGIN", "I2C", "I2CSLAVE", "INTERRUPTIN", "PORTIN", "PORTINOUT", "PORTOUT", "PWMOUT", "SERIAL", "SLEEP", "SPI", "SPISLAVE", "STDIO_MESSAGES"], | ||
"default_lib": "small" | ||
"device_has": ["ANALOGIN", "CAN", "I2C", "I2CSLAVE", "INTERRUPTIN", "PORTIN", "PORTINOUT", "PORTOUT", "PWMOUT", "SERIAL", "SLEEP", "SPI", "SPISLAVE", "STDIO_MESSAGES"], | ||
"default_build": "standard", | ||
"release_versions": ["5"] | ||
}, | ||
|
||
"NZ32_SC151": { | ||
"inherits": ["Target"], | ||
"core": "Cortex-M3", | ||
|
@@ -2001,13 +2003,31 @@ | |
"core": "Cortex-M4F", | ||
"default_toolchain": "ARM", | ||
"extra_labels": ["NUVOTON", "NUC472", "NUMAKER_PFM_NUC472"], | ||
"macros": ["MBEDTLS_ENTROPY_HARDWARE_ALT"], | ||
"macros": ["MBEDTLS_ENTROPY_HARDWARE_ALT"], | ||
"is_disk_virtual": true, | ||
"supported_toolchains": ["ARM", "uARM", "GCC_ARM", "IAR"], | ||
"inherits": ["Target"], | ||
"progen": {"target": "numaker-pfm-nuc472"}, | ||
"device_has": ["ANALOGIN", "I2C", "I2CSLAVE", "I2C_ASYNCH", "INTERRUPTIN", "LOWPOWERTIMER", "PORTIN", "PORTINOUT", "PORTOUT", "PWMOUT", "RTC", "SERIAL", "SERIAL_ASYNCH", "SERIAL_FC", "SLEEP", "SPI", "SPISLAVE", "SPI_ASYNCH"], | ||
"features": ["IPV4"], | ||
"release_versions": ["2", "5"] | ||
} | ||
}, | ||
"HI2110": { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It would be better if this change-set for HI2110 or any other target besides C029 would be sent via separate pull request (not to mix 2 or 3 different targets). There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, I agree. I’m about to rebase it now . I will create a new pull request. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I added a separate PR for the C029 changes only. This one can be closed. |
||
"inherits": ["Target"], | ||
"core": "Cortex-M0", | ||
"default_toolchain": "GCC_ARM", | ||
"supported_toolchains": ["GCC_ARM"], | ||
"extra_labels": ["ublox"], | ||
"macros": ["TARGET_PROCESSOR_FAMILY_BOUDICA", "BOUDICA_SARA"], | ||
"device_has": ["INTERRUPTIN", "LOWPOWERTIMER", "PORTIN", "PORTINOUT", "PORTOUT", "SERIAL", "SLEEP", "STDIO_MESSAGES"], | ||
"default_build": "small" | ||
}, | ||
"SARA_NBIOT": { | ||
"inherits": ["HI2110"], | ||
"extra_labels": ["ublox", "HI2110"] | ||
}, | ||
"SARA_NBIOT_EVK": { | ||
"inherits": ["SARA_NBIOT"], | ||
"extra_labels": ["ublox", "HI2110", "SARA_NBIOT"] | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,6 +51,8 @@ | |
|
||
#define HAL_TICK_DELAY (1000) // 1 ms | ||
|
||
void HAL_SuspendTick(void); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it should be either ARM