diff options
author | Harald Welte <laforge@gnumonks.org> | 2010-11-18 23:06:43 +0100 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2010-11-18 23:06:43 +0100 |
commit | 6492c2959cbea6dd6d46fc64267b88c19cf14e8a (patch) | |
tree | 1d80ac4e72e90319fd54cd66d3b45f65f8154647 /firmware/src/os/req_ctx.c | |
parent | 012362ba7d742b9ae304b09453ba6d9a49dc9d0b (diff) |
req_ctx: Increase size of small req_ctx to 128 and have 16 instead of 8
This is required to deal with bursts in SIM comminication while using
the SIMTRACE firmware
Diffstat (limited to 'firmware/src/os/req_ctx.c')
-rw-r--r-- | firmware/src/os/req_ctx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/src/os/req_ctx.c b/firmware/src/os/req_ctx.c index 73b6035..0e4816e 100644 --- a/firmware/src/os/req_ctx.c +++ b/firmware/src/os/req_ctx.c @@ -29,8 +29,8 @@ /* FIXME: locking, FIFO order processing */ #ifdef __AT91SAM7S64__ -#define NUM_RCTX_SMALL 4 -#define NUM_RCTX_LARGE 2 +#define NUM_RCTX_SMALL 16 +#define NUM_RCTX_LARGE 1 #else #define NUM_RCTX_SMALL 8 #define NUM_RCTX_LARGE 4 |