Commit f9ebb7ac82c9c7a1c0641d1c6825ed789d6a419b
1 parent
e8a21c6ccb
Exists in
master
and in
2 other branches
기본 값 변경 (system.ini를 안 쓰려 함)
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/app-prime-modbus/app/app-prime-modbus/rs485_serial.c
... | ... | @@ -765,7 +765,7 @@ int rs485_initialize( void){ |
765 | 765 | printf( "ini file error.\n"); |
766 | 766 | return -1; |
767 | 767 | } else { |
768 | - char *dev_uart = ini_read_string ( inifile, "uart", "devname" , "/dev/ttyUSB0" ); | |
768 | + char *dev_uart = ini_read_string ( inifile, "uart", "devname" , "/dev/ttymxc2" ); | |
769 | 769 | int baud = ini_read_integer( inifile, "uart", "baud" , 19200 ); |
770 | 770 | |
771 | 771 | printf( "dev_uart = %s\n", dev_uart); | ... | ... |