Changes between Version 6 and Version 7 of WARPLab/Reference/Node


Ignore:
Timestamp:
Dec 18, 2015, 10:47:30 AM (8 years ago)
Author:
welsh
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WARPLab/Reference/Node

    v6 v7  
    5050
    5151
    52 
    5352=== {{{get_fpga_temperature}}} ===
    5453Reads the temperature (in Celsius) from the FPGA[[BR]]
     
    9190
    9291'''Returns:''' none
     92
     93
     94
     95=== {{{node_mem_read}}} ===
     96Read memory addresses in the node[[BR]]
     97
     98
     99'''Arguments:'''   (uint32 ADDRESS), (uint32 LENGTH)
     100
     101'''Returns:'''     Vector of uint32 values read from the node
     102
     103ADDRESS:     Address to start the read[[BR]]
     104
     105LENGTH:      Number of uint32 words to read from the node[[BR]]
     106
     107NOTE:  The node enforces a maximum number of words that can be transferred for a
     108given read.  This is typically on the order of 350 words.[[BR]]
     109
     110NOTE:  Please use the C code files, such as xparameters.h and other header files,
     111to understand the addresses of various registers in the system and the meaning
     112of the bits within those registers.[[BR]]
     113
     114
     115
     116=== {{{node_mem_write}}} ===
     117Write memory addresses in the node[[BR]]
     118
     119
     120'''Arguments:''' (uint32 ADDRESS), (uint32 VALUES)
     121
     122'''Returns:''' none
     123
     124ADDRESS:     Address to start the write[[BR]]
     125
     126VALUES:      Vector of uint32 words to write to the node[[BR]]
     127
     128NOTE:  The node enforces a maximum number of words that can be transferred for a
     129given write.  This is typically on the order of 350 words.[[BR]]
     130
     131NOTE:  Please use the C code files, such as xparameters.h and other header files,
     132to understand the addresses of various registers in the system and the meaning
     133of the bits within those registers.[[BR]]
    93134
    94135
     
    217258
    218259
     260
     261
     262
     263
     264
     265