1. cfcf858 Yielding is unsafe by Woyten · 5 years ago
  2. 4f5bc41 Commands are safe by Woyten · 5 years ago
  3. 0b88228 Move platform-specific syscalls modules into separate files by Woyten · 5 years ago
  4. 6cf210a Improve lifetimes and warnings by Woyten · 5 years ago
  5. 6c38aa1 Merge pull request #98 from fhars/nrf52-fix by Woyten · 5 years ago
  6. 2740ae4 Add current tock kernel version. by torfmaster · 5 years ago
  7. cf3e59f Merge pull request #107 from torfmaster/feature/alloc-without-atomics by torfmaster · 5 years ago
  8. 8d4400d Build against riscv32imc in travis CI by Woyten · 5 years ago
  9. 1981871 Stop relying on atomics in the allocator by Woyten · 5 years ago
  10. 089f8c0 Merge pull request #103 from torfmaster/feature/futures by torfmaster · 5 years ago
  11. ab2c945 Merge pull request #95 from gendx/add-travis-osx by torfmaster · 5 years ago
  12. cda7db9 Improve understandability of async-support by Woyten · 5 years ago
  13. c37d428 Bump new version and add CHANGELOG.md by Woyten · 5 years ago
  14. 9ca48f0 Fix documentation and example by torfmaster · 5 years ago
  15. 5a5a204 Small changes in the documentation by torfmaster · 5 years ago
  16. 193a7af Remove unnecessary usages of executor::block_on by Woyten · 5 years ago
  17. 272f7b4 Improve documentation of async-support by Woyten · 5 years ago
  18. d5db030 Make main function async by torfmaster · 5 years ago
  19. e8913c6 Merge remote-tracking branch 'upstream/master' into feature/futures by Woyten · 5 years ago
  20. 6fc64fc Make RawWakerVTable static by Woyten · 5 years ago
  21. a8bb4fa Merge pull request #101 from jrvanwhy/low-level-debug by Johnathan Van Why · 5 years ago
  22. 6794015 Remove yieldk_for in syscalls_mock by Woyten · 5 years ago
  23. bf95b45 Make rng async by Woyten · 5 years ago
  24. 5349398 Remove sleep_sync. by torfmaster · 5 years ago
  25. 4c01091 Update toolchain for travis. by torfmaster · 5 years ago
  26. ee5de05 Add async example by Woyten · 5 years ago
  27. 806de82 Make temperature driver async. - amend temperature example by torfmaster · 5 years ago
  28. cd7597d Add general purpose waiting future by Woyten · 5 years ago
  29. 2c1a759 Add async runtime by Woyten · 5 years ago
  30. a460bce fmt by Johnathan Van Why · 5 years ago
  31. 8a76057 Move the low-level-debug definitions to a new module; extract constants. by Johnathan Van Why · 5 years ago
  32. d7cc4ce Add command1_insecure mock. by Johnathan Van Why · 5 years ago
  33. 501abcf Replace manual assembly with a new command1_insecure() syscall variant in the low-level-debug driver. by Johnathan Van Why · 5 years ago
  34. 99ba562 Fix the build on non-ARM architectures: the low-level-debug interface uses assembly and needs to be written per-architecture. by Johnathan Van Why · 5 years ago
  35. 2c5516c Give libtock-rs support for the LowLevelDebug capsule: by Johnathan Van Why · 5 years ago
  36. 91ab5a0 Merge pull request #97 from alistair23/alistair/rv32-fixes.next by Amit Levy · 5 years ago
  37. df99dca riscv32: entry_point.rs: Pass app_heap_break correctly to rust_start by Alistair Francis · 5 years ago
  38. a701040 syscalls: Hardcode syscall registers for RISC-V 32 by Alistair Francis · 5 years ago
  39. e7fc1ea Cargo.toml: Update the linked_list_allocator version by Alistair Francis · 5 years ago
  40. 107fa71 riscv32_layout.ld: Correct the RV32 link address by Alistair Francis · 5 years ago
  41. 4750ae2 Merge pull request #96 from gendx/add-memop by Johnathan Van Why · 5 years ago
  42. baa48db Merge pull request #99 from alistair23/alistair/timer-fixup.next by Johnathan Van Why · 5 years ago
  43. 13a950d timer: Fixup alarm tick calculation by Alistair Francis · 5 years ago
  44. 7d9d856 mention potential SRAM layout issues in README by Florian Hars · 5 years ago
  45. 5dbdd50 add changes for nRF52840-DK by Florian Hars · 5 years ago
  46. 70791a3 update README by Florian Hars · 5 years ago
  47. 976a786 Add reference to the last tested Tock version and relevant docs. by Guillaume Endignoux · 5 years ago
  48. 5cf866b fix nrf52 layout by Florian Hars · 5 years ago
  49. 3045e24 Add a memop module defining safe abstractions over syscall::memop. by Guillaume Endignoux · 5 years ago
  50. 1292483 Merge pull request #89 from gendx/add-rng by Johnathan Van Why · 5 years ago
  51. 2f48cb3 Add OSX target for Travis-CI. by Guillaume Endignoux · 5 years ago
  52. 81d6349 Merge pull request #94 from gendx/fix-entry-point-typo by Brad Campbell · 5 years ago
  53. 45df30d Fix elf2tab comment in entry_point.rs, to mention --app-heap instead of --heap-size. by Guillaume Endignoux · 5 years ago
  54. c6551ee Merge pull request #91 from gendx/enhance-timer by Amit Levy · 5 years ago
  55. c7ce133 Merge pull request #90 from gendx/add-panic-example by Amit Levy · 5 years ago
  56. 70c111c Use the no-field syntax instead of empty braces. by Guillaume Endignoux · 5 years ago
  57. 770f761 Enhance the timer interface. by Guillaume Endignoux · 5 years ago
  58. 41da6e9 Add panic example app, to test the effects of userspace panics. by Guillaume Endignoux · 5 years ago
  59. 5bd6a3c Fix typo. by Guillaume Endignoux · 5 years ago
  60. b091442 Add support for the RNG capsule, and a blink_random example app. by Guillaume Endignoux · 5 years ago
  61. 57e8682 Merge pull request #88 from alistair23/alistair/riscv32 by Johnathan Van Why · 5 years ago
  62. 6acae06 riscv32: Initial support of RISC-V by Alistair Francis · 5 years ago
  63. 686a7c6 Merge pull request #87 from jrvanwhy/toolchain-update by Amit Levy · 5 years ago
  64. 0229d87 Update Rust to nightly-2019-09-19. by Johnathan Van Why · 5 years ago
  65. 17a647a Merge pull request #85 from jrvanwhy/smaller-debug by Johnathan Van Why · 6 years ago
  66. 08cd0c7 Merge pull request #86 from jrvanwhy/pin-serde by Amit Levy · 6 years ago
  67. 8800af2 Replace TockValue's auto-derived Debug implementation with a hand-written implementation optimized for size. by Johnathan Van Why · 6 years ago
  68. e488334 Pin serde to a specific version, to keep compatibility with libtock-rs' toolchain. by Johnathan Van Why · 6 years ago
  69. 6db291d Merge pull request #83 from rajivr/for-upstream2 by Johnathan Van Why · 6 years ago
  70. 39167da entry_point: Refactor `_start` and `rust_start` by Rajiv Ranganath · 6 years ago
  71. 5aa6b80 layout.ld: Introduce `.stack` section by Rajiv Ranganath · 6 years ago
  72. 9f95088 {hail, nrf52}_layout.ld: Add `STACK_SIZE` by Rajiv Ranganath · 6 years ago
  73. 3765065 Merge pull request #81 from torfmaster/feature/heapless-ble by Woyten · 6 years ago
  74. 2cc6422 Improve documentation by torfmaster · 6 years ago
  75. 906d297 Remove unnecessary usage of heap in ble implememtation. by torfmaster · 6 years ago
  76. 301e215 Merge pull request #76 from torfmaster/syscall by Woyten · 6 years ago
  77. 41d6f71 Fix sensor drivers and example. by torfmaster · 6 years ago
  78. cf1018c Add rudimentary support for the hail board. by torfmaster · 6 years ago
  79. a709d14 Remove unnecessary alloc feature by torfmaster · 6 years ago
  80. 18746e4 Add ADC support implementation by Felix Obenhuber · 6 years ago
  81. eb03fec Explain how to run the integration tests. by torfmaster · 6 years ago
  82. fc221c8 Merge pull request #79 from torfmaster/feature/allocator-api by torfmaster · 6 years ago
  83. bb88445 Sane usage of linked list allocator by Woyten · 6 years ago
  84. 00197a6 Merge pull request #78 from torfmaster/documentation/integration-tests by Woyten · 6 years ago
  85. 59c8559 Explain how to run the integration tests. by torfmaster · 6 years ago
  86. 1beae85 Merge pull request #77 from torfmaster/feature/console-without-string-allocation by torfmaster · 6 years ago
  87. 09bb17a Better debugging by Woyten · 7 years ago
  88. ba19175 Do not require allocated strings when using the console by Woyten · 6 years ago
  89. 9dee3c0 Do not export macros of alloc crate by Woyten · 6 years ago
  90. adfbef2 More idiomatic formatting by Woyten · 6 years ago
  91. 6a5ae0e Use correct travis toolchain by Woyten · 6 years ago
  92. c800b71 Merge pull request #72 from torfmaster/feature/new-crate-name by Woyten · 6 years ago
  93. c84685a Change crate name to libtock. by torfmaster · 6 years ago
  94. cf5498a Merge pull request #71 from torfmaster/feature/hardware-test-extension by Woyten · 6 years ago
  95. 5b3b57b Create hardware test cases by torfmaster · 6 years ago
  96. 32164f2 Merge pull request #73 from torfmaster/feature/remove-fmt-module by torfmaster · 6 years ago
  97. 43744a9 Remove fmt module by Woyten · 6 years ago
  98. a3309ed Merge pull request #70 from rajivr/for-upstream1 by torfmaster · 6 years ago
  99. 1571b2b Rename `TEXT` memory region to `FLASH` by Rajiv Ranganath · 6 years ago
  100. 25fae0e Merge pull request #69 from jrvanwhy/rm-ipc by torfmaster · 6 years ago