diff options
author | Keith Packard <keithp@keithp.com> | 2013-06-16 22:32:16 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-06-16 22:32:16 -0700 |
commit | 2e2f3f2556e714833d8b7d0f65877b07b3dc2cb5 (patch) | |
tree | 1a3d09c974a28a408c65fcdef7f9748b9037a0c4 | |
parent | dcf769198863c1b0f1b05f41d0c052a3dbfef247 (diff) |
altos: Declare m25 write-in-progress as 'ao_port_t'
This lets us use port bits greater than 7 for M25 chip selects
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | src/drivers/ao_m25.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/drivers/ao_m25.c b/src/drivers/ao_m25.c index 9b768012..e6c7bb4d 100644 --- a/src/drivers/ao_m25.c +++ b/src/drivers/ao_m25.c @@ -86,7 +86,7 @@ static ao_port_t ao_m25_pin[M25_MAX_CHIPS]; /* chip select pin for each chip */ static uint8_t ao_m25_numchips; /* number of chips detected */ #endif static uint8_t ao_m25_total; /* total sectors available */ -static uint8_t ao_m25_wip; /* write in progress */ +static ao_port_t ao_m25_wip; /* write in progress */ static __xdata uint8_t ao_m25_mutex; @@ -250,7 +250,6 @@ ao_storage_erase(uint32_t pos) __reentrant cs = ao_m25_set_address(pos); - ao_m25_wait_wip(cs); ao_m25_write_enable(cs); ao_m25_instruction[0] = M25_SE; |