|
|
@ -45,7 +45,7 @@ tt() -> |
|
|
|
ignore |
|
|
|
end, |
|
|
|
|
|
|
|
ePortMsg:port_call(get(ppp), term_to_binary({$g, 12432, 4324})). |
|
|
|
ePortMsg:port_call(get(ppp), {$g, 12432, 4324}). |
|
|
|
|
|
|
|
tt(CmdId) -> |
|
|
|
case get(ppp) of |
|
|
@ -57,13 +57,13 @@ tt(CmdId) -> |
|
|
|
end, |
|
|
|
case CmdId of |
|
|
|
$g -> |
|
|
|
ePortMsg:port_call(get(ppp), term_to_binary({CmdId, 12432, 4324})); |
|
|
|
ePortMsg:port_call(get(ppp), {CmdId, 12432, 4324}); |
|
|
|
$u -> |
|
|
|
ePortMsg:port_call(get(ppp), term_to_binary({CmdId, 12432, 4324})); |
|
|
|
ePortMsg:port_call(get(ppp), {CmdId, 12432, 4324}); |
|
|
|
$t -> |
|
|
|
ignore; |
|
|
|
_ -> |
|
|
|
ePortMsg:port_call(get(ppp), term_to_binary({CmdId, 12432, 4324})) |
|
|
|
ePortMsg:port_call(get(ppp), {CmdId, 12432, 4324}) |
|
|
|
end. |
|
|
|
|
|
|
|
%%----------------------------------------------------------------- |
|
|
|