AT#M2MREADEXT="/xxfolder/config/config.txt"
<<< here receives the prompt and then the file content is displayed
immediately after the prompt
OK
AT#M2MCHDIR="/xxfolder"
OK
AT#M2MREADEXT=config/config.txt
<<< here receives the prompt and then the file content is displayed
immediately after the prompt
OK
Single chunk print mode:
AT#M2MREADEXT=config/config.txt,1000
<<< here receives the prompt; then the first 1000 bytes after the prompt
OK
AT#M2MREADEXT=,1000
<<< here receives the prompt and the subsequent 1000 bytes after the
prompt.
OK
AT#M2MREADEXT=,1000 continue until the end of the file
<<< here receives the prompt and the subsequent 1000 bytes after the
prompt.
OK
Continuous chunk print mode:
AT#M2MREADEXT=config/config.txt,1000,0,1
<<<
here receives the prompt (only once) and the subsequent 1000 bytes after
the prompt. The <CR> char triggers the next print of 1000 bytes.
The OK is printed once the whole file content has been printed.
OK