jenya7

Results 7 issues of jenya7

In my embedded projects (Linux or ARM) running a script itself has a little value to me. I wonder if I can invoke my functions from a script like var...

My functions for AT45DB021 ` `s32_t my_at45d_read(u32_t address, u32_t size, u8_t *buffer) { u32_t max_bytes_to_read; u32_t page; u32_t start_byte_on_page; // See if specified address is out of bounds if(address >...

When I open the project in qhttpserverresponse.cpp I get numerous errors: error: incomplete type 'qhttp::server::QHttpResponse' named in nested name specifier Do I miss something?

In order to make a script useful for a real world I'd like to write int main() { int sens1_val; int sens2_val; while(1) { sens1_val = m_sensor.GetDataByValType(1, SENS_VAL_TYPE_TEMP); sens2_val =...

In this module - **eth_mac_1g.v** - there are PTP signals ` module eth_mac_1g # /* * PTP */ input wire [TX_PTP_TS_WIDTH-1:0] tx_ptp_ts, input wire [RX_PTP_TS_WIDTH-1:0] rx_ptp_ts, output wire [TX_PTP_TS_WIDTH-1:0] tx_axis_ptp_ts,...

I have a simple, little script parser. For example to switch a sprinkler on time ` IF TIME == 12:00:00 THEN OUT1 = 1; IF TIME == 13:00:00 THEN OUT1...

I test the interpreter ` poolsize = 1 * 1024; line = 1; // allocate memory for virtual machine if (!(text = old_text = malloc(poolsize))) return -1; if (!(data =...