From f93e959905f114dfedf8489b3dcc0fc7a70e3c81 Mon Sep 17 00:00:00 2001 From: Marcel Telka Date: Mon, 28 Oct 2002 12:30:32 +0000 Subject: [PATCH] Added comment about not supported timeouts. git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@234 b68d4a1b-bc3d-0410-92ed-d4ac073336b7 --- include/device/flash/cfi.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/device/flash/cfi.h b/include/device/flash/cfi.h index c176ac3a..2402df97 100644 --- a/include/device/flash/cfi.h +++ b/include/device/flash/cfi.h @@ -103,13 +103,13 @@ typedef struct cfi_query_system_interface_information_t { uint16_t vcc_max_wev; /* in mV */ uint16_t vpp_min_wev; /* in mV, 0 - no Vpp pin is present */ uint16_t vpp_max_wev; /* in mV, 0 - no Vpp pin is present */ - uint32_t typ_single_write_timeout; /* in us */ + uint32_t typ_single_write_timeout; /* in us, 0 - not supported */ uint32_t typ_buffer_write_timeout; /* in us, 0 - not supported */ - uint32_t typ_block_erase_timeout; /* in ms */ + uint32_t typ_block_erase_timeout; /* in ms, 0 - not supported */ uint32_t typ_chip_erase_timeout; /* in ms, 0 - not supported */ - uint32_t max_single_write_timeout; /* in us */ + uint32_t max_single_write_timeout; /* in us, 0 - not supported */ uint32_t max_buffer_write_timeout; /* in us, 0 - not supported */ - uint32_t max_block_erase_timeout; /* in ms */ + uint32_t max_block_erase_timeout; /* in ms, 0 - not supported */ uint32_t max_chip_erase_timeout; /* in ms, 0 - not supported */ } cfi_query_system_interface_information_t; #endif /* LANGUAGE == C */