Re: Format flash chip with FAT

2018-05-29 Thread Sebastian Huber
On 29/05/18 18:18, LINDOW, Phil wrote: I want to format a flash chip (S29GL01GP) with a FAT filesystem. I've tried the following approach: 1. I've implemented IO functions for my chip     int flash_init(void* start_addr, flash_device_t* handle);     int flash_erase_block(flash_device_t*

Re: rtems watchdogs

2018-05-29 Thread Joel Sherrill
On Tue, May 29, 2018 at 11:41 AM, Matthew J Fletcher wrote: > Hi, > > Is there an integrated watchdog in rtems ?, i noticed that rtems seems to > implement an internal task/timer based watchdog, thats used by POSIX and > classic timers. The spwatchdog test seems to provide a good example of its >

rtems watchdogs

2018-05-29 Thread Matthew J Fletcher
Hi, Is there an integrated watchdog in rtems ?, i noticed that rtems seems to implement an internal task/timer based watchdog, thats used by POSIX and classic timers. The spwatchdog test seems to provide a good example of its usage. There are many BSPs that use a hardware watchdog, but no rtems c

Format flash chip with FAT

2018-05-29 Thread LINDOW, Phil
Hello all, I want to format a flash chip (S29GL01GP) with a FAT filesystem. I've tried the following approach: 1. I've implemented IO functions for my chip int flash_init(void* start_addr, flash_device_t* handle); int flash_erase_block(flash_device_t* handle, void* blk_addr);