Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions backend/submodule/peripherals.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,15 @@ class GpioStandard(RsEnum):
SSTL_3_3V_Class_I = 10, "SSTL 3.3V Class-I"
SSTL_3_3V_Class_II = 11, "SSTL 3.3V Class-II"

#class N22_RISC_V_Clock(RsEnum):
# PLL_233MHz = 0, "PLL (233 MHz)"
# BOOT_Clock_40MHz = 1, "BOOT CLK (40 MHz)"
# RC_OSC_50MHz = 2, "RC OSC (50 MHz)"

class N22_RISC_V_Clock(RsEnum):
PLL_233MHz = 0, "PLL (233 MHz)"
BOOT_Clock_40MHz = 1, "BOOT CLK (40 MHz)"
RC_OSC_50MHz = 2, "RC OSC (50 MHz)"
PLL_233MHz = 0, "PLL"
BOOT_Clock_40MHz = 1, "BOOT CLK"
RC_OSC_50MHz = 2, "RC OSC"

class Port_Activity(RsEnum):
IDLE = 0, "Idle"
Expand Down
2 changes: 1 addition & 1 deletion src/components/ModalWindows/BramModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function BramModal({
{
fieldType: FieldType.number,
id: 'bram_used',
text: 'Used',
text: 'BRAMs Used',
value: defaultValue.bram_used,
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/components/ModalWindows/DspModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function DspModal({
{
fieldType: FieldType.number,
id: 'number_of_multipliers',
text: 'XX',
text: 'Number of Multipliers',
value: defaultValue.number_of_multipliers,
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/components/Tables/BramTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ function BramTable({ device, update, notify }) {
];

const mainTableHeader = [
'', 'Action', 'En', 'Name/Hierarchy', 'BRAM Type', 'Used', 'Port', 'Clock', 'Width', 'Write En', 'Read En',
'', 'Action', 'En', 'Name/Hierarchy', 'BRAM Type', 'BRAMs Used', 'Port', 'Clock', 'Width', 'Write En', 'Read En',
'Toggle Rate', 'Clock Freq', 'RAM Depth', 'O/P Sig Rate', 'Block Power', 'Intc. Power', '%',
];

Expand Down
2 changes: 1 addition & 1 deletion src/components/Tables/DspTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ function DspTable({ device, update, notify }) {
];

const mainTableHeader = [
'', 'Action', 'En', 'Name/Hierarchy', 'XX', 'DSP Mode', { className: 'no-wrap', text: 'A-W' }, { className: 'no-wrap', text: 'B-W' },
'', 'Action', 'En', 'Name/Hierarchy', 'No. of Multipliers', 'DSP Mode', { className: 'no-wrap', text: 'A-W' }, { className: 'no-wrap', text: 'B-W' },
'Clock', 'Pipeline', 'T-Rate',
'Block Used', 'Clock Freq', 'O/P Sig Rate', 'Block Power', 'Intc. Power', '%',
];
Expand Down
Loading