contrib/rpc_examples: remove 'ocd_' command prefix from haskell example
The prefixed commands has been removed in commit 0840414f0e
("helper/command: do not replace new commands with ocd_ prefix").
Change-Id: I9f101beb85533973041386896bbb215bb141962f
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: http://openocd.zylin.com/5191
Tested-by: jenkins
Reviewed-by: Paul Fertser <fercerpav@gmail.com>
bscan_optimization
parent
c8184bac20
commit
6f87df80fe
|
@ -39,7 +39,7 @@ mdwParser = (manyTill anyChar (string ": ") *>
|
|||
|
||||
ocdMdw :: (InputStream ByteString, OutputStream ByteString) -> Integer -> Integer -> IO [Integer]
|
||||
ocdMdw s start count = do
|
||||
s <- ocdExec s $ "ocd_mdw " ++ show start ++ " " ++ show count
|
||||
s <- ocdExec s $ "mdw " ++ show start ++ " " ++ show count
|
||||
case parseOnly mdwParser (pack s) of
|
||||
Right r -> return $ concat r
|
||||
|
||||
|
|
Loading…
Reference in New Issue