소스 검색

Fix some Warnings

- unused parameter
- singed compare in int nvic_execution_priority(void)
teensy4-core
Frank 7 년 전
부모
커밋
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…
취소
저장