public inbox for ecos-discuss@sourceware.org
 help / color / mirror / Atom feed
* [ECOS] Parameters of SYG_FLASH_DRIVER macro
@ 2013-12-19 11:28 CKM367
  0 siblings, 0 replies; only message in thread
From: CKM367 @ 2013-12-19 11:28 UTC (permalink / raw)
  To: ecos-discuss

Could anybody specify the parameters of /SYG_FLASH_DRIVER/ macro?

I have got a 128MB flashlike device with 130 blocks of 0x10000 bytes size
and 4 ones of 0x4000 bytes. So, I made such an array:

static const cyg_flash_block_info_t p8p_block_info[2] = {
{(size_t)0x4000, (cyg_uint32)4 },
{(size_t)0x10000, (cyg_uint32)130 }
};

and then wrote the macro:

CYG_FLASH_DRIVER(
p8p_drv_handle,
&p8p_func_handle,
0, /* flags */
CYGMEM_REGION_flash, /* flash first address */
CYGMEM_REGION_flash + P8P_REGION_SIZE - 1, /* flash last address */
2, /* number of items in p8p_block_info*/
p8p_block_info,
&p8p_priv /* pointer to priv handle */
);


As a result, I got the message "Sorry, FLASH config exceeds available space
in FIS directory" from load_flash_config function because fisdir_size ==
0x1000. That is the value from p8p_block_info array. I suspect I use
CYG_FLASH_DRIVER macro with wrong parameters. Can you see the error(s) ?



--
View this message in context: http://sourceware-org.1504.n7.nabble.com/Parameters-of-SYG-FLASH-DRIVER-macro-tp255235.html
Sent from the Sourceware - ecos-discuss mailing list archive at Nabble.com.

-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2013-12-19 11:28 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-12-19 11:28 [ECOS] Parameters of SYG_FLASH_DRIVER macro CKM367

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).