axi_dmac: Use a more descriptive label for the store-and-forward memory size
The label for the store-and-forward memory size configuration option at the moment is just "FIFO Size" and while the store-and-forward memory uses a FIFO that is just a implementation detail. Change the label to "Store-and-Forward Memory Size". This is more descriptive as it references the function not the implementation. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>main
parent
15b0e38e23
commit
b18b16fd3a
|
@ -67,7 +67,7 @@ set_parameter_property DMA_LENGTH_WIDTH ALLOWED_RANGES {8:32}
|
|||
set_parameter_property DMA_LENGTH_WIDTH GROUP $group
|
||||
|
||||
add_parameter FIFO_SIZE INTEGER 4
|
||||
set_parameter_property FIFO_SIZE DISPLAY_NAME "FIFO Size (In Bursts)"
|
||||
set_parameter_property FIFO_SIZE DISPLAY_NAME "Store-and-Forward Memory Size (In Bursts)"
|
||||
set_parameter_property FIFO_SIZE HDL_PARAMETER true
|
||||
set_parameter_property FIFO_SIZE ALLOWED_RANGES {2 4 8 16 32}
|
||||
set_parameter_property FIFO_SIZE GROUP $group
|
||||
|
|
|
@ -318,7 +318,7 @@ set p [ipgui::get_guiparamspec -name "FIFO_SIZE" -component $cc]
|
|||
ipgui::move_param -component $cc -order 2 $p -parent $general_group
|
||||
set_property -dict [list \
|
||||
"widget" "comboBox" \
|
||||
"display_name" "FIFO Size (In Bursts)" \
|
||||
"display_name" "Store-and-Forward Memory Size (In Bursts)" \
|
||||
] $p
|
||||
|
||||
set p [ipgui::get_guiparamspec -name "MAX_BYTES_PER_BURST" -component $cc]
|
||||
|
|
Loading…
Reference in New Issue