Skip to content

Commit

Permalink
Issue #2. Changed pico_tick from ulong to ulong long.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei Carp authored and Andrei Carp committed Sep 5, 2013
1 parent 27133bd commit 083567d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/pico_constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ See LICENSE and COPYING for usage.
/* Included from pico_config.h */
/** Endian-dependant constants **/

extern volatile unsigned long pico_tick;
extern volatile unsigned long long pico_tick;

#ifdef PICO_BIGENDIAN

Expand Down
2 changes: 1 addition & 1 deletion stack/pico_stack.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Authors: Daniele Lacamera
const uint8_t PICO_ETHADDR_MCAST[6] = {0x01, 0x00, 0x5e, 0x00, 0x00, 0x00};
#endif

volatile unsigned long pico_tick;
volatile unsigned long long pico_tick;
volatile pico_err_t pico_err;

static uint32_t _rand_seed;
Expand Down

0 comments on commit 083567d

Please sign in to comment.