diff options
-rw-r--r-- | apps/spi-test/app.c | 44 | ||||
-rw-r--r-- | apps/spi-test/watch_spi.c | 46 | ||||
-rw-r--r-- | watch-library/shared/driver/spiflash.c | 2 |
3 files changed, 35 insertions, 57 deletions
diff --git a/apps/spi-test/app.c b/apps/spi-test/app.c index fc78bbc5..006067a4 100644 --- a/apps/spi-test/app.c +++ b/apps/spi-test/app.c @@ -6,15 +6,30 @@ // this is a very basic app to confirm that SPI is working, tested with board OSO-MISC-21-017 and a GD25Q16C Flash chip. +static bool wait_for_flash_ready(void) { + watch_set_pin_level(A3, false); + bool ok = true; + uint8_t read_status_response[1] = {0x00}; + do { + ok = spi_flash_read_command(CMD_READ_STATUS, read_status_response, 1); + } while (ok && (read_status_response[0] & 0x3) != 0); + watch_set_pin_level(A3, true); + return ok; +} + void app_init(void) { spi_flash_init(); + delay_ms(5000); - uint8_t buf[3] = {1, 2, 3}; - watch_set_pin_level(A3, false); - spi_flash_command(CMD_ENABLE_WRITE); - watch_set_pin_level(A3, true); - // note that you will need to erase the sector to write different values later - spi_flash_write_data(0, buf, 3); + uint8_t buf[256] = {0}; + for(int i = 1; i < 16; i++) { + wait_for_flash_ready(); + watch_set_pin_level(A3, false); + spi_flash_command(CMD_ENABLE_WRITE); + watch_set_pin_level(A3, true); + wait_for_flash_ready(); + spi_flash_write_data(i * 256, buf, 256); + } } void app_wake_from_backup(void) { @@ -31,13 +46,20 @@ void app_wake_from_standby(void) { bool app_loop(void) { - uint8_t buf[3] = {0}; + uint8_t buf[4100] = {0}; + printf("loop\n"); - // should print 1, 2, 3 - spi_flash_read_data(0, buf, 3); - printf("data: %x, %x, %x\n", buf[0], buf[1], buf[2]); + wait_for_flash_ready(); + spi_flash_read_data(0, buf, 4100); + for(int i = 0; i < 4100; i++) { + if (buf[i] > 0) { + // should break at "byte 4096 is 255" + printf(" byte %d is %d!\n", i, buf[i]); + break; + } + } - delay_ms(100); + delay_ms(10000); return false; } diff --git a/apps/spi-test/watch_spi.c b/apps/spi-test/watch_spi.c deleted file mode 100644 index 9227f36a..00000000 --- a/apps/spi-test/watch_spi.c +++ /dev/null @@ -1,46 +0,0 @@ -/* - * MIT License - * - * Copyright (c) 2022 Joey Castillo - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - */ - -#include "watch_spi.h" - -struct io_descriptor *spi_io; - -void watch_enable_spi(void) { - SPI_0_init(); - spi_m_sync_get_io_descriptor(&SPI_0, &spi_io); - spi_m_sync_enable(&SPI_0); -} - -void watch_disable_spi(void) { - spi_m_sync_disable(&SPI_0); - spi_io = NULL; -} - -void watch_spi_read(const uint8_t *buf, uint16_t length) { - io_write(spi_io, buf, length); -} - -void watch_spi_read(uint8_t *buf, uint16_t length) { - io_read(spi_io, buf, length); -} diff --git a/watch-library/shared/driver/spiflash.c b/watch-library/shared/driver/spiflash.c index da6b2630..0fb7f437 100644 --- a/watch-library/shared/driver/spiflash.c +++ b/watch-library/shared/driver/spiflash.c @@ -88,7 +88,9 @@ bool spi_flash_write_data(uint32_t address, uint8_t *data, uint32_t data_length) address_to_bytes(address, request + 1); flash_enable(); bool status = watch_spi_write(request, 4); + printf("status? "); if (status) { + printf("status! Writing %d bytes to %02x %02x %02x\n", data_length, request[1], request[2], request[3]); status = watch_spi_write(data, data_length); } flash_disable(); |