app.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "run_config": {
  3. "target" : "hardware",
  4. "hardware" : {
  5. "baudrate": 115200,
  6. "timeout": 60
  7. },
  8. "qemu": {
  9. "qemu32": "qemu-system-riscv32",
  10. "qemu64": "qemu-system-riscv64",
  11. "timeout": 60
  12. },
  13. "ncycm": {
  14. "timeout": 1200
  15. }
  16. },
  17. "parallel" : "-j",
  18. "build_target": "clean all",
  19. "build_config": {
  20. },
  21. "checks": {
  22. "PASS": [],
  23. "FAIL": ["MEPC"]
  24. },
  25. "appdirs": [
  26. "application/baremetal/smphello",
  27. "application/baremetal/demo_cidu",
  28. "application/freertos/smpdemo"
  29. ],
  30. "appdirs_ignore": [
  31. ],
  32. "appconfig": {
  33. "application/baremetal/demo_cidu": {
  34. "build_config" : {"XLCFG_CIDU": "1"},
  35. "checks": {
  36. "PASS": ["[ERROR]__CIDU_PRESENT must be defined as 1 in <Device>.h!", "Core 1 has received interrupt from core 0", "[WARN] SMP & CIDU not present"]
  37. }
  38. },
  39. "application/freertos/smpdemo": {
  40. "build_config" : {},
  41. "checks": {
  42. "PASS": ["timers Callback 3 on hart"]
  43. }
  44. },
  45. "application/baremetal/smphello": {
  46. "build_config" : {},
  47. "checks": {
  48. "PASS": ["All harts boot successfully!"]
  49. }
  50. }
  51. }
  52. }