top of page

Forum Comments

Not able to execute the Step 3 (Modpoll Test) in the Energy meter demo shown in developer website
In RB-A5D2x
Issue with UART on rugged board
In RB-A5D2x
ashrafulkhn
May 20, 2020
/* standard headers */ #include #include #include #include /* mraa header */ #include "mraa/uart.h" #ifndef FALSE #define FALSE 0 #define TRUE (!FALSE) #endif /* UART port name */ const char* dev_path = "/dev/ttyS4"; volatile sig_atomic_t flag = 1; void sig_handler(int signum) { if (signum == SIGINT) { fprintf(stdout, "Exiting...\n");         flag = 0;     } } int main(int argc, char** argv) { mraa_result_t status = MRAA_SUCCESS;     mraa_uart_context uart; char buffer[] = "Hello Mraa!"; char buffer1[20]; int baudrate = 9600, stopbits = 1, databits = 8; mraa_uart_parity_t parity = MRAA_UART_PARITY_NONE; unsigned int ctsrts = FALSE, xonxoff = FALSE; const char* name = NULL; /* install signal handler */ signal(SIGINT, sig_handler); /* initialize mraa for the platform (not needed most of the time) */ mraa_init();     //! [Interesting] /* initialize uart */     uart = mraa_uart_init_raw(dev_path); if (uart == NULL) { fprintf(stderr, "Failed to initialize UART\n"); return EXIT_FAILURE;     } /* set serial port parameters */     status = mraa_uart_settings(-1, &dev_path, &name, &baudrate, &databits, &stopbits, &parity, &ctsrts, &xonxoff); if (status != MRAA_SUCCESS) { goto err_exit;     } while (flag) { /* send data through uart */ mraa_uart_write(uart, buffer, sizeof(buffer)); sleep(5); mraa_uart_read(uart,buffer1,sizeof(buffer1)); printf("Data Read %s\n",buffer1); sleep(5);          buffer1[0]='\0';     } /* stop uart */ mraa_uart_stop(uart);     //! [Interesting] /* deinitialize mraa for the platform (not needed most of the time) */ mraa_deinit(); return EXIT_SUCCESS; err_exit: mraa_result_print(status); /* stop uart */ mraa_uart_stop(uart); /* deinitialize mraa for the platform (not needed most of the times) */ mraa_deinit(); return EXIT_FAILURE; } Try out the code above using the appropriate toolchain. Let me know if this code worked for you.
1
1
ImportError: No module named 'serial'
In RB-A5D2x
ashrafulkhn
Apr 10, 2020
I don't see any code here.
0
ImportError: No module named 'serial'
In RB-A5D2x
How to connect rugged with energy meter
In RB-A5D2x
I am trying to read AI using mraa library python3,below is the code.But I am getting a Invalid AIO pin specified - do you have an ADC? error
In RB-A5D2x
I want the mraa source with board file included for rugged board A5D2, please post it as soon as possible
In RB-A5D2x
I am trying to read AI using mraa library python3,below is the code.But I am getting a Invalid AIO pin specified - do you have an ADC? error
In RB-A5D2x
Hi, can you provide the port no for RS 485 board. And also for the other RS 232 Ports.
In RB-A5D2x
Buying a RuggedBOARD
In General Discussions
bottom of page