fill-buffer1

nazarijtipusak080/buffer1/fill-buffer1

Fills the buffer with the specified byte.
fill-buffer1
@/fill-buffer1
Fills the buffer with the specified byte.
buffer1@/buffer1
valuebyte
lennumber
triggerpulse
fill-buffer1
buffer1
value
len
trigger
done
ERR
ERRpulse
donepulse
To use the node in your project you should have the nazarijtipusak080/buffer1 library installed. Use the “File → Add Library” menu item in XOD IDE if you don’t have it yet. See Using libraries for more info.

C++ implementation

struct State {
    // не використовується
};

{{ GENERATED_CODE }}

void evaluate(Context ctx) {
    if (!isInputDirty<input_trigger>(ctx)) return;

    // Отримуємо об'єкт буфера
    auto _object = getValue<input_buffer1>(ctx); // буфер
    uint16_t len = static_cast<uint16_t>(getValue<input_len>(ctx));
    char value = getValue<input_value>(ctx); // char
    // Перевірка, чи існує буфер і чи є правильна довжина
    if (!_object->buffer || len > _object->len) {
        emitValue<output_ERR>(ctx, 1);  // видаємо помилку
        return;
    }

    // Зсув байтів вліво
    for (uint16_t i = 0; i < len; i++) {
        _object->buffer[i] = value;
    }
    
   
    // Виводимо успіх
    emitValue<output_done>(ctx, 1);
}