Skip to content

Commit 924772f

Browse files
committed
tweak stacktraces
1 parent 3dcffec commit 924772f

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

src/nesper/spis.nim

+2-2
Original file line numberDiff line numberDiff line change
@@ -268,14 +268,13 @@ proc getData*(trn: SpiTrans): seq[byte] =
268268
else:
269269
return trn.rx_data.toSeq()
270270

271+
{.push stacktrace: off.}
271272
proc getSmallData*(trn: SpiTrans): array[4, uint8] =
272273
if trn.trn.rxlength > 32:
273274
raise newException(SpiError, "transaction data too large")
274275

275276
return trn.trn.rx_data
276277

277-
278-
279278
proc pollingStart*(trn: SpiTrans, ticks_to_wait: TickType_t = portMAX_DELAY) {.inline.} =
280279
let ret = spi_device_polling_start(trn.dev.handle, addr(trn.trn), ticks_to_wait)
281280
if (ret != ESP_OK):
@@ -290,6 +289,7 @@ proc poll*(trn: SpiTrans, ticks_to_wait: TickType_t = portMAX_DELAY) {.inline.}
290289
let ret: esp_err_t = spi_device_polling_transmit(trn.dev.handle, addr(trn.trn))
291290
if (ret != ESP_OK):
292291
raise newEspError[SpiError]("spi polling (" & $esp_err_to_name(ret) & ")", ret)
292+
{.pop.}
293293

294294
proc acquireBus*(trn: SpiDev, wait: TickType_t = portMAX_DELAY) {.inline.} =
295295
let ret: esp_err_t = spi_device_acquire_bus(trn.handle, wait)

src/nesper/timers.nim

+5-1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ proc toMicros*(ts: Millis): Micros =
5757
return Micros(ts.uint64 * 1_000U)
5858

5959
# void IRAM_ATTR delayMicroseconds(uint32_t us)
60+
{.push stacktrace: off.}
6061
proc delayMicros*(us: uint64): uint64 {.discardable.} =
6162
if us.uint64 == 0:
6263
return 0
@@ -71,6 +72,7 @@ proc delayMicros*(us: uint64): uint64 {.discardable.} =
7172
curr = microsRaw()
7273

7374
return target-curr
75+
{.pop.}
7476

7577
proc delayMillis*(ms: uint64): uint64 {.discardable.} =
7678
var start = millis()
@@ -89,8 +91,10 @@ proc delay*(ts: Micros) {.discardable.} = discard delayMicros(ts.uint64)
8991
proc newBasicTimer*(): BasicTimer =
9092
return BasicTimer(ts: micros())
9193

92-
proc elapsed*(timer: BasicTimer): Micros =
94+
{.push stacktrace: off.}
95+
proc elapsed*(timer: BasicTimer): Micros {.inline.} =
9396
return micros() - timer.ts
97+
{.pop.}
9498

9599
proc reset*(timer: var BasicTimer) =
96100
timer.ts = micros()

0 commit comments

Comments
 (0)