Skip to content
#

embedded-systems

Here are 2,063 public repositories matching this topic...

Jackistang
Jackistang commented May 26, 2022

以下测试环境为:

  • Win10 系统
  • 通过 scons --dist 新生成的 qemu 环境
  • 每隔 1 秒通过串口 COM9 发送 hello world 的下位机

输入下述命令运行 qemu 程序:

qemu-system-arm -M vexpress-a9 -kernel rtthread.bin --nographic -serial mon:stdio -serial COM9

结果显示系统崩溃,并且是在 qemu 接收第一个字节后崩溃。

下位机不主动发送数据给上位机时,工作正常。

good first issue
emba
m-1-k-3
m-1-k-3 commented May 16, 2022

Is your feature request related to a problem? Please describe.

Kali Linux 2022.2 released here: https://www.kali.org/blog/kali-linux-2022-2-release/
We need to test EMBA on it

Testcases:

  • Default/docker installation working
    • EMBA run with profile default-scan in strict mode (-S)
  • Full installation working
    • EMBA run in dev mode with options -s -z -S -D -
enhancement help wanted good first issue docker
japaric
japaric commented Oct 6, 2021

defmt

defmt::println!("{:?}", 1 as *const u8);

output:

 1
└─ hello::__cortex_m_rt_main @ src/bin/hello.rs:8

core::fmt

println!("{:?}", 1 as *const u8);

output:

0x1

defmt should also include the 0x prefix.

The current format makes it hard to tell that the number is a hexadecimal valu

type: bug good first issue priority: medium status: needs PR

Improve this page

Add a description, image, and links to the embedded-systems topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the embedded-systems topic, visit your repo's landing page and select "manage topics."

Learn more