|
@@ -276,9 +276,7 @@ const char echomagic[] PROGMEM = "echo:";
|
276
|
276
|
const char axis_codes[NUM_AXIS] = {'X', 'Y', 'Z', 'E'};
|
277
|
277
|
|
278
|
278
|
static bool relative_mode = false; //Determines Absolute or Relative Coordinates
|
279
|
|
-static char serial_char;
|
280
|
279
|
static int serial_count = 0;
|
281
|
|
-static boolean comment_mode = false;
|
282
|
280
|
static char* seen_pointer; ///< A pointer to find chars in the command string (X, Y, Z, E, etc.)
|
283
|
281
|
const char* queued_commands_P = NULL; /* pointer to the current line in the active sequence of commands, or NULL when none */
|
284
|
282
|
const int sensitive_pins[] = SENSITIVE_PINS; ///< Sensitive pin list for M42
|
|
@@ -409,9 +407,7 @@ static uint8_t target_extruder;
|
409
|
407
|
static bool filrunoutEnqueued = false;
|
410
|
408
|
#endif
|
411
|
409
|
|
412
|
|
-#if ENABLED(SDSUPPORT)
|
413
|
|
- static bool fromsd[BUFSIZE];
|
414
|
|
-#endif
|
|
410
|
+static bool send_ok[BUFSIZE];
|
415
|
411
|
|
416
|
412
|
#if HAS_SERVOS
|
417
|
413
|
Servo servo[NUM_SERVOS];
|
|
@@ -487,29 +483,28 @@ extern "C" {
|
487
|
483
|
#endif //!SDSUPPORT
|
488
|
484
|
|
489
|
485
|
/**
|
490
|
|
- * Inject the next command from the command queue, when possible
|
491
|
|
- * Return false only if no command was pending
|
|
486
|
+ * Inject the next "immediate" command, when possible.
|
|
487
|
+ * Return true if any immediate commands remain to inject.
|
492
|
488
|
*/
|
493
|
489
|
static bool drain_queued_commands_P() {
|
494
|
|
- if (!queued_commands_P) return false;
|
495
|
|
-
|
496
|
|
- // Get the next 30 chars from the sequence of gcodes to run
|
497
|
|
- char cmd[30];
|
498
|
|
- strncpy_P(cmd, queued_commands_P, sizeof(cmd) - 1);
|
499
|
|
- cmd[sizeof(cmd) - 1] = '\0';
|
500
|
|
-
|
501
|
|
- // Look for the end of line, or the end of sequence
|
502
|
|
- size_t i = 0;
|
503
|
|
- char c;
|
504
|
|
- while ((c = cmd[i]) && c != '\n') i++; // find the end of this gcode command
|
505
|
|
- cmd[i] = '\0';
|
506
|
|
- if (enqueuecommand(cmd)) { // buffer was not full (else we will retry later)
|
507
|
|
- if (c)
|
508
|
|
- queued_commands_P += i + 1; // move to next command
|
509
|
|
- else
|
510
|
|
- queued_commands_P = NULL; // will have no more commands in the sequence
|
|
490
|
+ if (queued_commands_P != NULL) {
|
|
491
|
+ // Get the next gcode to run
|
|
492
|
+ size_t i = 0;
|
|
493
|
+ char c;
|
|
494
|
+ while ((c = queued_commands_P[i++]) && c != '\n') { };
|
|
495
|
+ if (i > 1) {
|
|
496
|
+ char cmd[i];
|
|
497
|
+ strncpy_P(cmd, queued_commands_P, i - 1);
|
|
498
|
+ cmd[i - 1] = '\0';
|
|
499
|
+ if (enqueue_and_echo_command(cmd)) { // buffer was not full (else we will retry later)
|
|
500
|
+ if (c)
|
|
501
|
+ queued_commands_P += i; // move to next command
|
|
502
|
+ else
|
|
503
|
+ queued_commands_P = NULL; // no more commands in the sequence
|
|
504
|
+ }
|
|
505
|
+ }
|
511
|
506
|
}
|
512
|
|
- return true;
|
|
507
|
+ return (queued_commands_P != NULL); // any more left to add?
|
513
|
508
|
}
|
514
|
509
|
|
515
|
510
|
/**
|
|
@@ -517,32 +512,45 @@ static bool drain_queued_commands_P() {
|
517
|
512
|
* Aborts the current queue, if any.
|
518
|
513
|
* Note: drain_queued_commands_P() must be called repeatedly to drain the commands afterwards
|
519
|
514
|
*/
|
520
|
|
-void enqueuecommands_P(const char* pgcode) {
|
|
515
|
+void enqueue_and_echo_commands_P(const char* pgcode) {
|
521
|
516
|
queued_commands_P = pgcode;
|
522
|
517
|
drain_queued_commands_P(); // first command executed asap (when possible)
|
523
|
518
|
}
|
524
|
519
|
|
525
|
520
|
/**
|
526
|
|
- * Copy a command directly into the main command buffer, from RAM.
|
527
|
|
- *
|
528
|
|
- * This is done in a non-safe way and needs a rework someday.
|
529
|
|
- * Returns false if it doesn't add any command
|
|
521
|
+ * Once a new command is in the ring buffer, call this to commit it
|
530
|
522
|
*/
|
531
|
|
-bool enqueuecommand(const char* cmd) {
|
532
|
|
- if (*cmd == ';' || commands_in_queue >= BUFSIZE) return false;
|
533
|
|
-
|
534
|
|
- // This is dangerous if a mixing of serial and this happens
|
535
|
|
- char* command = command_queue[cmd_queue_index_w];
|
536
|
|
- strcpy(command, cmd);
|
537
|
|
- SERIAL_ECHO_START;
|
538
|
|
- SERIAL_ECHOPGM(MSG_Enqueueing);
|
539
|
|
- SERIAL_ECHO(command);
|
540
|
|
- SERIAL_ECHOLNPGM("\"");
|
|
523
|
+inline void _commit_command(bool say_ok) {
|
|
524
|
+ send_ok[cmd_queue_index_w] = say_ok;
|
541
|
525
|
cmd_queue_index_w = (cmd_queue_index_w + 1) % BUFSIZE;
|
542
|
526
|
commands_in_queue++;
|
|
527
|
+}
|
|
528
|
+
|
|
529
|
+/**
|
|
530
|
+ * Copy a command directly into the main command buffer, from RAM.
|
|
531
|
+ * Returns true if successfully adds the command
|
|
532
|
+ */
|
|
533
|
+inline bool _enqueuecommand(const char* cmd, bool say_ok=false) {
|
|
534
|
+ if (*cmd == ';' || commands_in_queue >= BUFSIZE) return false;
|
|
535
|
+ strcpy(command_queue[cmd_queue_index_w], cmd);
|
|
536
|
+ _commit_command(say_ok);
|
543
|
537
|
return true;
|
544
|
538
|
}
|
545
|
539
|
|
|
540
|
+/**
|
|
541
|
+ * Enqueue with Serial Echo
|
|
542
|
+ */
|
|
543
|
+bool enqueue_and_echo_command(const char* cmd, bool say_ok/*=false*/) {
|
|
544
|
+ if (_enqueuecommand(cmd, say_ok)) {
|
|
545
|
+ SERIAL_ECHO_START;
|
|
546
|
+ SERIAL_ECHOPGM(MSG_Enqueueing);
|
|
547
|
+ SERIAL_ECHO(cmd);
|
|
548
|
+ SERIAL_ECHOLNPGM("\"");
|
|
549
|
+ return true;
|
|
550
|
+ }
|
|
551
|
+ return false;
|
|
552
|
+}
|
|
553
|
+
|
546
|
554
|
void setup_killpin() {
|
547
|
555
|
#if HAS_KILL
|
548
|
556
|
SET_INPUT(KILL_PIN);
|
|
@@ -699,9 +707,8 @@ void setup() {
|
699
|
707
|
SERIAL_ECHOPGM(MSG_PLANNER_BUFFER_BYTES);
|
700
|
708
|
SERIAL_ECHOLN((int)sizeof(block_t)*BLOCK_BUFFER_SIZE);
|
701
|
709
|
|
702
|
|
- #if ENABLED(SDSUPPORT)
|
703
|
|
- for (int8_t i = 0; i < BUFSIZE; i++) fromsd[i] = false;
|
704
|
|
- #endif
|
|
710
|
+ // Send "ok" after commands by default
|
|
711
|
+ for (int8_t i = 0; i < BUFSIZE; i++) send_ok[i] = true;
|
705
|
712
|
|
706
|
713
|
// loads data from EEPROM if available else uses defaults (and resets step acceleration rate)
|
707
|
714
|
Config_RetrieveSettings();
|
|
@@ -760,7 +767,7 @@ void setup() {
|
760
|
767
|
* - Call LCD update
|
761
|
768
|
*/
|
762
|
769
|
void loop() {
|
763
|
|
- if (commands_in_queue < BUFSIZE - 1) get_command();
|
|
770
|
+ if (commands_in_queue < BUFSIZE) get_command();
|
764
|
771
|
|
765
|
772
|
#if ENABLED(SDSUPPORT)
|
766
|
773
|
card.checkautostart(false);
|
|
@@ -820,9 +827,12 @@ void gcode_line_error(const char* err, bool doFlush = true) {
|
820
|
827
|
*/
|
821
|
828
|
void get_command() {
|
822
|
829
|
|
|
830
|
+ static char serial_line_buffer[MAX_CMD_SIZE];
|
|
831
|
+ static boolean serial_comment_mode = false;
|
|
832
|
+
|
823
|
833
|
if (drain_queued_commands_P()) return; // priority is given to non-serial commands
|
824
|
834
|
|
825
|
|
- #if ENABLED(NO_TIMEOUTS)
|
|
835
|
+ #if defined(NO_TIMEOUTS) && NO_TIMEOUTS > 0
|
826
|
836
|
static millis_t last_command_time = 0;
|
827
|
837
|
millis_t ms = millis();
|
828
|
838
|
|
|
@@ -837,29 +847,21 @@ void get_command() {
|
837
|
847
|
//
|
838
|
848
|
while (commands_in_queue < BUFSIZE && MYSERIAL.available() > 0) {
|
839
|
849
|
|
840
|
|
- #if ENABLED(NO_TIMEOUTS)
|
841
|
|
- last_command_time = ms;
|
842
|
|
- #endif
|
843
|
|
-
|
844
|
|
- serial_char = MYSERIAL.read();
|
|
850
|
+ char serial_char = MYSERIAL.read();
|
845
|
851
|
|
846
|
852
|
//
|
847
|
|
- // If the character ends the line, or the line is full...
|
|
853
|
+ // If the character ends the line
|
848
|
854
|
//
|
849
|
|
- if (serial_char == '\n' || serial_char == '\r' || serial_count >= MAX_CMD_SIZE - 1) {
|
|
855
|
+ if (serial_char == '\n' || serial_char == '\r') {
|
850
|
856
|
|
851
|
|
- // end of line == end of comment
|
852
|
|
- comment_mode = false;
|
|
857
|
+ serial_comment_mode = false; // end of line == end of comment
|
853
|
858
|
|
854
|
859
|
if (!serial_count) return; // empty lines just exit
|
855
|
860
|
|
856
|
|
- char* command = command_queue[cmd_queue_index_w];
|
857
|
|
- command[serial_count] = 0; // terminate string
|
|
861
|
+ serial_line_buffer[serial_count] = 0; // terminate string
|
|
862
|
+ serial_count = 0; //reset buffer
|
858
|
863
|
|
859
|
|
- // this item in the queue is not from sd
|
860
|
|
- #if ENABLED(SDSUPPORT)
|
861
|
|
- fromsd[cmd_queue_index_w] = false;
|
862
|
|
- #endif
|
|
864
|
+ char* command = serial_line_buffer;
|
863
|
865
|
|
864
|
866
|
while (*command == ' ') command++; // skip any leading spaces
|
865
|
867
|
char* npos = (*command == 'N') ? command : NULL; // Require the N parameter to start the line
|
|
@@ -924,44 +926,56 @@ void get_command() {
|
924
|
926
|
// If command was e-stop process now
|
925
|
927
|
if (strcmp(command, "M112") == 0) kill(PSTR(MSG_KILLED));
|
926
|
928
|
|
927
|
|
- cmd_queue_index_w = (cmd_queue_index_w + 1) % BUFSIZE;
|
928
|
|
- commands_in_queue += 1;
|
|
929
|
+ #if defined(NO_TIMEOUTS) && NO_TIMEOUTS > 0
|
|
930
|
+ last_command_time = ms;
|
|
931
|
+ #endif
|
929
|
932
|
|
930
|
|
- serial_count = 0; //clear buffer
|
|
933
|
+ // Add the command to the queue
|
|
934
|
+ _enqueuecommand(serial_line_buffer, true);
|
|
935
|
+ }
|
|
936
|
+ else if (serial_count >= MAX_CMD_SIZE - 1) {
|
|
937
|
+ // Keep fetching, but ignore normal characters beyond the max length
|
|
938
|
+ // The command will be injected when EOL is reached
|
931
|
939
|
}
|
932
|
940
|
else if (serial_char == '\\') { // Handle escapes
|
933
|
|
- if (MYSERIAL.available() > 0 && commands_in_queue < BUFSIZE) {
|
|
941
|
+ if (MYSERIAL.available() > 0) {
|
934
|
942
|
// if we have one more character, copy it over
|
935
|
943
|
serial_char = MYSERIAL.read();
|
936
|
|
- command_queue[cmd_queue_index_w][serial_count++] = serial_char;
|
|
944
|
+ serial_line_buffer[serial_count++] = serial_char;
|
937
|
945
|
}
|
938
|
946
|
// otherwise do nothing
|
939
|
947
|
}
|
940
|
|
- else { // its not a newline, carriage return or escape char
|
941
|
|
- if (serial_char == ';') comment_mode = true;
|
942
|
|
- if (!comment_mode) command_queue[cmd_queue_index_w][serial_count++] = serial_char;
|
|
948
|
+ else { // it's not a newline, carriage return or escape char
|
|
949
|
+ if (serial_char == ';') serial_comment_mode = true;
|
|
950
|
+ if (!serial_comment_mode) serial_line_buffer[serial_count++] = serial_char;
|
943
|
951
|
}
|
944
|
|
- }
|
|
952
|
+
|
|
953
|
+ } // queue has space, serial has data
|
945
|
954
|
|
946
|
955
|
#if ENABLED(SDSUPPORT)
|
947
|
956
|
|
948
|
|
- if (!card.sdprinting || serial_count) return;
|
|
957
|
+ static bool stop_buffering = false,
|
|
958
|
+ sd_comment_mode = false;
|
|
959
|
+
|
|
960
|
+ if (!card.sdprinting) return;
|
949
|
961
|
|
950
|
962
|
// '#' stops reading from SD to the buffer prematurely, so procedural macro calls are possible
|
951
|
|
- // if it occurs, stop_buffering is triggered and the buffer is ran dry.
|
|
963
|
+ // if it occurs, stop_buffering is triggered and the buffer is run dry.
|
952
|
964
|
// this character _can_ occur in serial com, due to checksums. however, no checksums are used in SD printing
|
953
|
965
|
|
954
|
|
- static bool stop_buffering = false;
|
955
|
966
|
if (commands_in_queue == 0) stop_buffering = false;
|
956
|
967
|
|
957
|
|
- while (!card.eof() && commands_in_queue < BUFSIZE && !stop_buffering) {
|
|
968
|
+ uint16_t sd_count = 0;
|
|
969
|
+ bool card_eof = card.eof();
|
|
970
|
+ while (commands_in_queue < BUFSIZE && !card_eof && !stop_buffering) {
|
958
|
971
|
int16_t n = card.get();
|
959
|
|
- serial_char = (char)n;
|
960
|
|
- if (serial_char == '\n' || serial_char == '\r' ||
|
961
|
|
- ((serial_char == '#' || serial_char == ':') && !comment_mode) ||
|
962
|
|
- serial_count >= (MAX_CMD_SIZE - 1) || n == -1
|
|
972
|
+ char sd_char = (char)n;
|
|
973
|
+ card_eof = card.eof();
|
|
974
|
+ if (card_eof || n == -1
|
|
975
|
+ || sd_char == '\n' || sd_char == '\r'
|
|
976
|
+ || ((sd_char == '#' || sd_char == ':') && !sd_comment_mode)
|
963
|
977
|
) {
|
964
|
|
- if (card.eof()) {
|
|
978
|
+ if (card_eof) {
|
965
|
979
|
SERIAL_PROTOCOLLNPGM(MSG_FILE_PRINTED);
|
966
|
980
|
print_job_stop_ms = millis();
|
967
|
981
|
char time[30];
|
|
@@ -974,24 +988,24 @@ void get_command() {
|
974
|
988
|
card.printingHasFinished();
|
975
|
989
|
card.checkautostart(true);
|
976
|
990
|
}
|
977
|
|
- if (serial_char == '#') stop_buffering = true;
|
|
991
|
+ if (sd_char == '#') stop_buffering = true;
|
978
|
992
|
|
979
|
|
- if (!serial_count) {
|
980
|
|
- comment_mode = false; //for new command
|
981
|
|
- return; //if empty line
|
982
|
|
- }
|
983
|
|
- command_queue[cmd_queue_index_w][serial_count] = 0; //terminate string
|
984
|
|
- // if (!comment_mode) {
|
985
|
|
- fromsd[cmd_queue_index_w] = true;
|
986
|
|
- commands_in_queue += 1;
|
987
|
|
- cmd_queue_index_w = (cmd_queue_index_w + 1) % BUFSIZE;
|
988
|
|
- // }
|
989
|
|
- comment_mode = false; //for new command
|
990
|
|
- serial_count = 0; //clear buffer
|
|
993
|
+ sd_comment_mode = false; //for new command
|
|
994
|
+
|
|
995
|
+ if (!sd_count) continue; //skip empty lines
|
|
996
|
+
|
|
997
|
+ command_queue[cmd_queue_index_w][sd_count] = '\0'; //terminate string
|
|
998
|
+ sd_count = 0; //clear buffer
|
|
999
|
+
|
|
1000
|
+ _commit_command(false);
|
|
1001
|
+ }
|
|
1002
|
+ else if (sd_count >= MAX_CMD_SIZE - 1) {
|
|
1003
|
+ // Keep fetching, but ignore normal characters beyond the max length
|
|
1004
|
+ // The command will be injected when EOL is reached
|
991
|
1005
|
}
|
992
|
1006
|
else {
|
993
|
|
- if (serial_char == ';') comment_mode = true;
|
994
|
|
- if (!comment_mode) command_queue[cmd_queue_index_w][serial_count++] = serial_char;
|
|
1007
|
+ if (sd_char == ';') sd_comment_mode = true;
|
|
1008
|
+ if (!sd_comment_mode) command_queue[cmd_queue_index_w][sd_count++] = sd_char;
|
995
|
1009
|
}
|
996
|
1010
|
}
|
997
|
1011
|
|
|
@@ -2703,7 +2717,7 @@ inline void gcode_G28() {
|
2703
|
2717
|
case MeshStart:
|
2704
|
2718
|
mbl.reset();
|
2705
|
2719
|
probe_point = 0;
|
2706
|
|
- enqueuecommands_P(PSTR("G28\nG29 S2"));
|
|
2720
|
+ enqueue_and_echo_commands_P(PSTR("G28\nG29 S2"));
|
2707
|
2721
|
break;
|
2708
|
2722
|
|
2709
|
2723
|
case MeshNext:
|
|
@@ -2742,7 +2756,7 @@ inline void gcode_G28() {
|
2742
|
2756
|
SERIAL_PROTOCOLLNPGM("Mesh probing done.");
|
2743
|
2757
|
probe_point = -1;
|
2744
|
2758
|
mbl.active = 1;
|
2745
|
|
- enqueuecommands_P(PSTR("G28"));
|
|
2759
|
+ enqueue_and_echo_commands_P(PSTR("G28"));
|
2746
|
2760
|
}
|
2747
|
2761
|
break;
|
2748
|
2762
|
|
|
@@ -3264,7 +3278,7 @@ inline void gcode_G28() {
|
3264
|
3278
|
SERIAL_ECHOLNPGM(Z_PROBE_END_SCRIPT);
|
3265
|
3279
|
}
|
3266
|
3280
|
#endif
|
3267
|
|
- enqueuecommands_P(PSTR(Z_PROBE_END_SCRIPT));
|
|
3281
|
+ enqueue_and_echo_commands_P(PSTR(Z_PROBE_END_SCRIPT));
|
3268
|
3282
|
st_synchronize();
|
3269
|
3283
|
#endif
|
3270
|
3284
|
|
|
@@ -3429,7 +3443,7 @@ inline void gcode_M17() {
|
3429
|
3443
|
}
|
3430
|
3444
|
|
3431
|
3445
|
/**
|
3432
|
|
- * M23: Select a file
|
|
3446
|
+ * M23: Open a file
|
3433
|
3447
|
*/
|
3434
|
3448
|
inline void gcode_M23() {
|
3435
|
3449
|
card.openFile(current_command_args, true);
|
|
@@ -5301,7 +5315,7 @@ inline void gcode_M428() {
|
5301
|
5315
|
SERIAL_ERRORLNPGM(MSG_ERR_M428_TOO_FAR);
|
5302
|
5316
|
LCD_ALERTMESSAGEPGM("Err: Too far!");
|
5303
|
5317
|
#if HAS_BUZZER
|
5304
|
|
- enqueuecommands_P(PSTR("M300 S40 P200"));
|
|
5318
|
+ enqueue_and_echo_commands_P(PSTR("M300 S40 P200"));
|
5305
|
5319
|
#endif
|
5306
|
5320
|
err = true;
|
5307
|
5321
|
break;
|
|
@@ -5315,7 +5329,7 @@ inline void gcode_M428() {
|
5315
|
5329
|
sync_plan_position();
|
5316
|
5330
|
LCD_ALERTMESSAGEPGM("Offset applied.");
|
5317
|
5331
|
#if HAS_BUZZER
|
5318
|
|
- enqueuecommands_P(PSTR("M300 S659 P200\nM300 S698 P200"));
|
|
5332
|
+ enqueue_and_echo_commands_P(PSTR("M300 S659 P200\nM300 S698 P200"));
|
5319
|
5333
|
#endif
|
5320
|
5334
|
}
|
5321
|
5335
|
}
|
|
@@ -6365,9 +6379,7 @@ void FlushSerialRequestResend() {
|
6365
|
6379
|
|
6366
|
6380
|
void ok_to_send() {
|
6367
|
6381
|
refresh_cmd_timeout();
|
6368
|
|
- #if ENABLED(SDSUPPORT)
|
6369
|
|
- if (fromsd[cmd_queue_index_r]) return;
|
6370
|
|
- #endif
|
|
6382
|
+ if (!send_ok[cmd_queue_index_r]) return;
|
6371
|
6383
|
SERIAL_PROTOCOLPGM(MSG_OK);
|
6372
|
6384
|
#if ENABLED(ADVANCED_OK)
|
6373
|
6385
|
char* p = command_queue[cmd_queue_index_r];
|
|
@@ -7067,7 +7079,7 @@ void manage_inactivity(bool ignore_stepper_queue/*=false*/) {
|
7067
|
7079
|
filrunout();
|
7068
|
7080
|
#endif
|
7069
|
7081
|
|
7070
|
|
- if (commands_in_queue < BUFSIZE - 1) get_command();
|
|
7082
|
+ if (commands_in_queue < BUFSIZE) get_command();
|
7071
|
7083
|
|
7072
|
7084
|
millis_t ms = millis();
|
7073
|
7085
|
|
|
@@ -7124,7 +7136,7 @@ void manage_inactivity(bool ignore_stepper_queue/*=false*/) {
|
7124
|
7136
|
const int HOME_DEBOUNCE_DELAY = 2500;
|
7125
|
7137
|
if (!READ(HOME_PIN)) {
|
7126
|
7138
|
if (!homeDebounceCount) {
|
7127
|
|
- enqueuecommands_P(PSTR("G28"));
|
|
7139
|
+ enqueue_and_echo_commands_P(PSTR("G28"));
|
7128
|
7140
|
LCD_MESSAGEPGM(MSG_AUTO_HOME);
|
7129
|
7141
|
}
|
7130
|
7142
|
if (homeDebounceCount < HOME_DEBOUNCE_DELAY)
|
|
@@ -7250,7 +7262,7 @@ void kill(const char* lcd_msg) {
|
7250
|
7262
|
void filrunout() {
|
7251
|
7263
|
if (!filrunoutEnqueued) {
|
7252
|
7264
|
filrunoutEnqueued = true;
|
7253
|
|
- enqueuecommands_P(PSTR(FILAMENT_RUNOUT_SCRIPT));
|
|
7265
|
+ enqueue_and_echo_commands_P(PSTR(FILAMENT_RUNOUT_SCRIPT));
|
7254
|
7266
|
st_synchronize();
|
7255
|
7267
|
}
|
7256
|
7268
|
}
|