瀏覽代碼

Fix some Warnings

- unused parameter
- singed compare in int nvic_execution_priority(void)
teensy4-core
Frank 8 年之前
父節點
當前提交
c36325198d
共有 1 個檔案被更改,包括 6 行新增1 行删除
  1. +6
    -1
      teensy3/mk20dx128.c

+ 6
- 1
teensy3/mk20dx128.c 查看文件

#endif #endif
#endif #endif


#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-parameter"

void * _sbrk(int incr) void * _sbrk(int incr)
{ {
char *prev, *stack; char *prev, *stack;
*g = 1; *g = 1;
} }


#pragma GCC diagnostic pop

int nvic_execution_priority(void) int nvic_execution_priority(void)
{ {
int priority=256;
uint32_t priority=256;
uint32_t primask, faultmask, basepri, ipsr; uint32_t primask, faultmask, basepri, ipsr;


// full algorithm in ARM DDI0403D, page B1-639 // full algorithm in ARM DDI0403D, page B1-639

Loading…
取消
儲存