-
```
uint8_t HardwareSerial::available(void)
{
return (RX_BUFFER_SIZE + _rx_buffer->head - _rx_buffer->tail) %
RX_BUFFER_SIZE;
}
needs to be:
uint8_t HardwareSerial::available(void)
{
retur…
-
| | |
|:---|:---|
|**_F´ Version_**| |
|**Fw**| |
---
## Feature Description
Tracing allows an on-board log to be built of software execution where various points in the software a sample poi…
-
To reproduce:
- open Integra Live
- insert a soundfiler
- close Integra Live
Expected
- no error in the server log
Actual
- It is possible to find multiple errors such as:
Error [20:01:48 05/07/15]…
-
When running examples, we get:
```CMD
cronologic xhptdc8_user_guide_example using driver: 0,0,9,22169
This is illustrating the usage of an xHPTDC8 examplary with internal triggeringDevice is bu…
-
# Description
-[ ] Build a mock end point that sends test data that complies with the interface described
- [ ] rework the frontend console code to work with this API
- [ ] Create a new table to …
-
While we can use ```Tone.Context.addAudioWorkletModule()``` and ```Tone.Context.createAudioWorkletNode()```, it would be cool to see a ```Tone.Processor()``` Node for custom processing. The idea I am …
-
Right now, there are at least 2 quite adhoc patterns that are recognized by
escape analysis as safe. It skips detailed analysis when it sees
self-assignment statement that does not introduce new poi…
-
```
I wrote a simple performance test using the Disruptor to test mostly-empty and
mostly-full scenarios in the ring buffer.
The SingleThreadedClaimStrategy() provides waitForFreeSlotAt() to block u…
-
The `struct fuse_lowlevel_ops` has callbacks passing buffers to the callback:
1. write
2. ioctl
3. write_buf
4. retrieve_reply
The ownership and lifetime of these buffers is not documented.
…
-
brdige.c I made a simple modification:
In process_ring() in bridge.c, I can determine whether the message is allowed to pass through the client-to-server message by looking up the value of the mac'…