Ver código fonte

Fix some Warnings

- unused parameter
- singed compare in int nvic_execution_priority(void)
main
Frank 8 anos atrás
pai
commit
c36325198d
1 arquivos alterados com 6 adições e 1 exclusões
  1. +6
    -1
      teensy3/mk20dx128.c

+ 6
- 1
teensy3/mk20dx128.c Ver arquivo

#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

Carregando…
Cancelar
Salvar