Ignore:
Timestamp:
Aug 7, 2012, 6:37:49 PM (12 years ago)
Author:
alain
Message:

Introducing a new release where all initialisation
is done in the boot code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/libs/mwmr_channel.h

    r179 r189  
    2020    unsigned int        sts;                    // number of words available
    2121    unsigned int        depth;                  // max number of words in the channel
    22     unsigned int        width;                  // number of word in an item   
     22    unsigned int        width;                  // number of words in an item   
    2323    unsigned int        lock;                   // exclusive access lock
    24     unsigned int        data[1];                // circular buffer
     24    unsigned int        data[1018];             // circular buffer
    2525} mwmr_channel_t;
    2626
     
    2929//////////////////////////////////////////////////////////////////////////////
    3030
    31 void mwmr_write( mwmr_channel_t*            mwmr,
    32                  const unsigned int*    buffer,
    33                  unsigned int               nitems );
     31void mwmr_write( mwmr_channel_t*        mwmr,
     32                 unsigned int*          buffer,
     33                 unsigned int           nitems );
    3434
    3535void mwmr_read( mwmr_channel_t*         mwmr,
Note: See TracChangeset for help on using the changeset viewer.