mirror of
https://github.com/apache/nuttx.git
synced 2026-05-27 03:05:40 +08:00
tools/ci: enable avr32dev1 build
removed in the tools/ci/testlist/other.dat file the entries -avr32dev1:nsh -avr32dev1:ostest avr32_bringup.c Fix Error: ./avr32_bringup.c:54:4: error: #warning "Not Implemented" comment out directive '#warning' /* #warning "Not Implemented" */ avr_doirq.c fix avr32/avr_doirq.c:117: error: assignment discards qualifiers from pointer target type regs = g_current_regs; -> regs = (uint32_t *)g_current_regs;
This commit is contained in:
@@ -114,7 +114,7 @@ uint32_t *avr_doirq(int irq, uint32_t *regs)
|
|||||||
* switch occurred during interrupt processing.
|
* switch occurred during interrupt processing.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
regs = g_current_regs;
|
regs = (uint32_t *)g_current_regs;
|
||||||
|
|
||||||
/* Set g_current_regs to NULL to indicate that we are no longer in
|
/* Set g_current_regs to NULL to indicate that we are no longer in
|
||||||
* an interrupt handler.
|
* an interrupt handler.
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ int avr32_bringup(void)
|
|||||||
{
|
{
|
||||||
int ret = OK;
|
int ret = OK;
|
||||||
|
|
||||||
#warning "Not Implemented"
|
/* #warning "Not Implemented" */
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
# We do not have a toolchain for avr32 outside of Microchip login wall.
|
# We do not have a toolchain for avr32 outside of Microchip login wall.
|
||||||
# The work was never upstreamed to GCC.
|
# The work was never upstreamed to GCC.
|
||||||
/avr
|
/avr
|
||||||
-avr32dev1:nsh
|
|
||||||
-avr32dev1:ostest
|
|
||||||
|
|
||||||
# PINGUINOL toolchain doesn't provide macOS binaries
|
# PINGUINOL toolchain doesn't provide macOS binaries
|
||||||
# with the same name
|
# with the same name
|
||||||
|
|||||||
Reference in New Issue
Block a user