jifan

Results 5 issues of jifan

### Description [describe your questions] 如题,我想用AD域验证登陆go-admin系统,应该怎么做呢? 谢谢。

As described above. I'm wondering if we can just create a very tiny bootstrap C project and link it to a tinyGO program? And in that case, tinygo output will...

question

in canmatrix/formats/json.py ``` if "messages" in json_data: for frame in json_data["messages"]: # new_frame = Frame(frame["id"],frame["name"],8,None) new_frame = canmatrix.Frame(frame["name"], arbitration_id=frame["id"], size=8) if "length" in frame: new_frame.size = frame["length"] new_frame.arbitration_id.extended = frame.get("is_extended_frame",...

bug

Hi kokke: I write a small piece of code to support CFB mode. I think the code style is quite like the CFB part. And I generated the test sample...

我使用GD32F103RCT6开发板移植STM32的相关BSP,在UTEST中遇到几个问题,其中部分已提交PR,另外几处确实不熟悉原因: 1. mailbox_tc.c中,thread3_recv_dynamic_mb,result = rt_mb_recv(test_dynamic_mb, (rt_ubase_t *)&mb_recv_str2, RT_WAITING_FOREVER);,会在第二次运行utest时失败,打断点发现在ipc.c:2318行,rt_schedule();行失败,然后线程返回错误。 2. thread_tc.c中,test_thread_suspend函数,会在此test case中,使用rt_thread_suspend中断其它线程,但看上去rt_thread_suspend是不允许其它线程中断的,因RT_ASSERT(thread == rt_thread_self());约束 还请大佬们指教