BrianLChen

Results 4 issues of BrianLChen

在文件 “usbd_customhid.c” 中,146,205和264行。这把键盘的设计应该是使用USB总线供电,而非自供电,而且键盘带有远程唤醒。为什么这里的值是0xC0 (1100 0000)而不是0xA0 (1010 0000)。 根据定义,D6为供电方式标识,0为总线供电,1为自供电。D5为远程唤醒标识符,1为支持远程唤醒。

**Test case** ```systemverilog module test ( input logic clk, nrst, output logic [7:0] count, count2, output logic count_max ); typedef enum {state1, state2, state3} state_t; ``` **Actual output** ```systemverilog module...

formatter

Hi, I a question about configure the formatter behaviour. I would like to know if there are any options to put _begin_ keyword on a separate line. **Current behaviour** ```systemverilog...

formatter

**Describe the bug** The formatter not working properly with unique case or priority case statements. **To Reproduce** Test case ```systemverilog module test(); logic [7:0] var1; logic [7:0] value; always_comb begin...

bug
formatter