Advertisement
Sidsh

LSA Documented 1.1

Mar 3rd, 2022
343
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VeriLog 18.72 KB | None | 0 0
  1. module LSA(
  2.     output [7:0]m1,  //motor1                                            PIN_D3
  3.      output [7:0]m1b,
  4.     output [7:0]m2,  //motor2                                            PIN_C3
  5.      output [7:0]m2b,
  6.     input s1,  //12-bit output of ch. 5 (parallel)
  7.     input s2,  //12-bit output of ch. 6 (parallel)
  8.     input s3,  //12-bit output of ch. 7 (parallel)
  9.     input clk_1,    //50 MHz clock
  10.     input reset,
  11.      input [6:0]Clr,
  12.      output Led1,    //Led used to indicate position of bot i.e. node or line
  13.      output Led2,
  14.      output Led3,
  15.      output HL1,        // to control uart
  16.      output [6:0] id,
  17.      output EM,
  18.      output Clr_en,
  19.      output [1:0]Clr_r
  20.     );
  21.  
  22. reg signed[7:0]error = 0;
  23. reg signed[7:0]difference = 0;
  24. reg signed[7:0]correction = 0;
  25. reg signed[7:0]cumulative_error = 0;
  26. reg signed[7:0]preverror = 0;
  27. reg [4:0]nodecount = -5'd1;     //No. of nodes bot has traversed, initially set to -1
  28. reg flag = 0;  
  29.  
  30. reg led1=0;
  31. reg led2=0;
  32. reg led3=0;
  33.  
  34. reg [7:0]odc =56;     //optimum duty cycle
  35. reg [7:0]mo1 = 50;    // pwm to motor1, initially set to 50
  36. reg [7:0]mo1r= 0;
  37. reg [7:0]mo2 = 50;    // pwm to motor2, initially set to 50
  38. reg [7:0]mo2r= 0;
  39. reg [7:0]ml1 = 50;    // pwm to motor1 when it is on line
  40. reg [7:0]ml1r=0;
  41. reg [7:0]ml2 = 50;    // pwm to motor2 when it is on line
  42. reg [7:0]ml2r=0;
  43. reg [7:0]mn1 = 50;    // pwm to motor1 when it is on node
  44. reg [7:0]mn1r= 0;
  45. reg [7:0]mn2 = 50;    // pwm to motor2 when it is on node
  46. reg [7:0]mn2r= 0;
  47.  
  48. reg [6:0] id1 =0;        //to control uart
  49. reg hl=0;
  50. reg n=0;
  51. reg u=0;
  52.  
  53. reg en=0;
  54. reg [1:0]state = 0; //0: arena, 1: pick, 2:place
  55. reg [1:0]path_no = 0;  //no. of path
  56. reg [1:0]path[3:0][11:0];
  57. reg [4:0]path_len[3:0]; //length of each path
  58. reg [1:0]clrPath[8:0][9:0];   //enter 9 S paths in sequence RGB
  59. reg [4:0]clrPathlen[8:0]; //enter 9 S paths length in sequence RGB
  60. reg [1:0]DepPath[8:0][12:0];
  61. reg [4:0]DepPath_len[8:0];
  62.  
  63. reg [1:0]clr_reset=0;
  64. reg clr_en = 1;  //disable clr detection
  65. reg clr_en1 = 1;  //disable clr detection
  66. reg [1:0]clrsN=0;
  67. reg [2:0]clrs[0:2];
  68. reg [4:0]dest[2:0];
  69. reg [1:0]rcount=3;     //count no. of red color patches
  70. reg [1:0]gcount=0;     //count no. of green color patches
  71. reg [1:0]bcount=0;     //count no. of blue color patches
  72.  
  73. reg flag2=0;
  74. reg flag3=0;
  75. reg flag4=0;
  76. reg endflag = 0;
  77.  
  78. reg done = 0;
  79. reg [20:0]delay=0;
  80.     //Arena
  81. function automatic uart;
  82.     input [6:0]p;
  83.     begin
  84.         hl = 0;
  85.         id1 = p;
  86.         hl = 1;
  87.         hl = 0;
  88.         uart = 1;
  89.     end
  90. endfunction
  91.  
  92. function automatic pwm;                 //Cases for pwm
  93.     input [1:0]n;
  94.     begin
  95.         case(n)
  96.         0:begin                             //Straight
  97.             mn1 = 56;
  98.             mn1r=0;
  99.             mn2 = 56;
  100.             mn2r=0;
  101.           end
  102.         1:begin                             //Left
  103.             mn1 = 0;
  104.             mn1r=40;
  105.             mn2 = 54;
  106.             mn2r=0;
  107.           end
  108.         2:begin                             //Right
  109.             mn1 = 56;
  110.             mn1r=0;
  111.             mn2 = 0;
  112.             mn2r=40;
  113.           end
  114.         3:begin                             //U-Turn
  115.             mn1=0;
  116.             mn1r=odc;
  117.             mn2=odc;
  118.             mn2r=0;
  119.           end
  120.         endcase
  121.         pwm = 1;
  122.      end
  123.     endfunction
  124.  
  125. always @(posedge clk_1) begin           //for delay
  126. if(clr_en1==0)
  127. begin
  128.     delay<=delay+1;
  129.     if(delay==300000)
  130.     begin
  131.         clr_en<=0;
  132.     end
  133. end else
  134. begin
  135.     delay<=0;
  136. end
  137. if(done == 0)
  138. begin
  139.     state <=0;                              //Path Traversal
  140.     path[0][0] <= 0;
  141.    path[0][1] <= 0;
  142.    path[0][2] <= 0;
  143.    path[0][3] <= 0;
  144.    path[0][4] <= 2;
  145.    path[0][5] <= 0;
  146.    path[0][6] <= 1;
  147.    path[0][7] <= 0;
  148.    path[0][8] <= 1;
  149.    path[0][9] <= 0;
  150.    path[0][10] <= 0;
  151.    
  152.    path[1][0] <= 2;
  153.    path[1][1] <= 0;
  154.    path[1][2] <= 0;
  155.    path[1][3] <= 0;
  156.    path[1][4] <= 1;
  157.    path[1][5] <= 0;
  158.    path[1][6] <= 0;
  159.    path[1][7] <= 1;
  160.    path[1][8] <= 0;
  161.    path[1][9] <= 2;
  162.    path[1][10] <= 2;
  163.  
  164.    path[2][0] <= 1;
  165.    path[2][1] <= 0;
  166.    path[2][2] <= 1;
  167.    path[2][3] <= 1;
  168.     path[2][4] <= 0;
  169.    path[2][5] <= 1;
  170.    path[2][6] <= 0;
  171.    path[2][7] <= 0;
  172.    
  173.    path[3][0] <= 1;
  174.    path[3][1] <= 1;
  175.    path[3][2] <= 0;
  176.     path[3][3] <= 1;
  177.    path[3][4] <= 0;
  178.    path[3][5] <= 1;
  179.    path[3][6] <= 0;
  180.    path[3][7] <= 2;
  181.    path[3][8] <= 2;
  182.    path[3][9] <= 0;
  183.    path[3][10] <= 0;  
  184.    
  185.    path_len[0] <= 10;               //Path traversal storage length
  186.    path_len[1] <= 10;
  187.    path_len[2] <= 7;
  188.    path_len[3] <= 10;
  189.    
  190.     clrPath[0][0] <= 0;             //Warehouse path traversal
  191.     clrPath[0][1] <= 1;
  192.     clrPath[0][2] <= 3;
  193.     clrPath[0][3] <= 2;
  194.     clrPath[0][4] <= 0;
  195.  
  196.     clrPath[1][0] <= 0;
  197.     clrPath[1][1] <= 2;
  198.     clrPath[1][2] <= 2;
  199.     clrPath[1][3] <= 2;
  200.     clrPath[1][4] <= 3;
  201.     clrPath[1][5] <= 2;
  202.     clrPath[1][6] <= 0;
  203.     clrPath[1][7] <= 0;
  204.     clrPath[1][8] <= 0;
  205.  
  206.     clrPath[2][0] <= 3;
  207.     clrPath[2][1] <= 3;
  208.     clrPath[2][2] <= 3;
  209.     clrPath[2][3] <= 3;
  210.     clrPath[2][4] <= 3;
  211.     clrPath[2][5] <= 3;
  212.     clrPath[2][6] <= 3;
  213.     clrPath[2][7] <= 3;
  214.  
  215.     clrPath[3][0] <= 0;
  216.     clrPath[3][1] <= 2;
  217.     clrPath[3][2] <= 3;
  218.     clrPath[3][3] <= 1;
  219.     clrPath[3][4] <= 0;
  220.  
  221.     clrPath[4][0] <= 0;
  222.     clrPath[4][1] <= 0;
  223.     clrPath[4][2] <= 0;
  224.     clrPath[4][3] <= 2;
  225.     clrPath[4][4] <= 3;
  226.     clrPath[4][5] <= 1;
  227.     clrPath[4][6] <= 0;
  228.     clrPath[4][7] <= 0;
  229.     clrPath[4][8] <= 0;
  230.  
  231.     clrPath[5][0] <= 3;
  232.     clrPath[5][1] <= 3;
  233.     clrPath[5][2] <= 3;
  234.     clrPath[5][3] <= 3;
  235.     clrPath[5][4] <= 3;
  236.  
  237.     clrPath[6][0] <= 0;
  238.     clrPath[6][1] <= 0;
  239.     clrPath[6][2] <= 1;
  240.     clrPath[6][3] <= 3;
  241.     clrPath[6][4] <= 2;
  242.     clrPath[6][5] <= 0;
  243.     clrPath[6][6] <= 0;
  244.  
  245.     clrPathlen[0] <= 4;
  246.     clrPathlen[1] <= 8;
  247.     clrPathlen[2] <= 7;
  248.     clrPathlen[3] <= 4;
  249.     clrPathlen[4] <= 8;
  250.     clrPathlen[5] <= 4;
  251.     clrPathlen[6] <= 6;
  252.     clrPathlen[7] <= 0;
  253.     clrPathlen[8] <= 0;
  254.  
  255.      DepPath [0][0] <= 2;               //Box deposition path traversal
  256.     DepPath [0][1] <= 0;
  257.     DepPath [0][2] <= 1;
  258.     DepPath [0][3] <= 1;
  259.     DepPath [0][4] <= 3;
  260.     DepPath [0][5] <= 2;
  261.     DepPath [0][6] <= 2;
  262.     DepPath [0][7] <= 0;
  263.     DepPath [0][8] <= 0;
  264.     //for DZP2
  265.     DepPath [1][0] <= 2;
  266.     DepPath [1][1] <= 1;
  267.     DepPath [1][2] <= 3;
  268.     DepPath [1][3] <= 2;
  269.     DepPath [1][4] <= 0;
  270.     //for DZM1
  271.     DepPath [2][0] <= 1;
  272.     DepPath [2][1] <= 1;
  273.     DepPath [2][2] <= 2;
  274.     DepPath [2][3] <= 3;
  275.     DepPath [2][4] <= 1;
  276.     DepPath [2][5] <= 2;
  277.     DepPath [2][6] <= 1;
  278.     //for DZM2
  279.     DepPath [3][0] <= 1;
  280.     DepPath [3][1] <= 1;
  281.     DepPath [3][2] <= 0;
  282.     DepPath [3][3] <= 2;
  283.     DepPath [3][4] <= 2;
  284.     DepPath [3][5] <= 3;
  285.     DepPath [3][6] <= 1;
  286.     DepPath [3][7] <= 1;
  287.     DepPath [3][8] <= 0;
  288.      DepPath [3][9] <= 2;
  289.     DepPath [3][10] <= 1;
  290.  
  291.     //for DZM3
  292.     DepPath [4][0] <= 1;
  293.     DepPath [4][1] <= 0;
  294.     DepPath [4][2] <= 0;
  295.     DepPath [4][3] <= 0;
  296.     DepPath [4][4] <= 1;
  297.     DepPath [4][5] <= 1;
  298.     DepPath [4][6] <= 3;
  299.     DepPath [4][7] <= 2;
  300.     DepPath [4][8] <= 2;
  301.     DepPath [4][9] <= 0;
  302.     DepPath [4][10] <= 0;
  303.      DepPath [4][11] <= 0;
  304.     DepPath [4][12] <= 1;
  305.     //for DZV2
  306.     DepPath [5][0] <= 1;
  307.     DepPath [5][1] <= 2;
  308.     DepPath [5][2] <= 3;
  309.     DepPath [5][3] <= 1;
  310.     DepPath [5][4] <= 1;
  311.     //for DZV1
  312.     DepPath [6][0] <= 0;
  313.     DepPath [6][1] <= 1;
  314.     DepPath [6][2] <= 3;
  315.     DepPath [6][3] <= 1;
  316.     //for DZN1
  317.     DepPath [7][0] <= 1;
  318.     DepPath [7][1] <= 0;
  319.     DepPath [7][2] <= 2;
  320.     DepPath [7][3] <= 1;
  321.     DepPath [7][4] <= 3;
  322.     DepPath [7][5] <= 2;
  323.     DepPath [7][6] <= 1;
  324.     DepPath [7][7] <= 0;
  325.     DepPath [7][8] <= 2;//end
  326.     //for DZN2
  327.     DepPath [8][0] <= 1;
  328.     DepPath [8][1] <= 0;
  329.     DepPath [8][2] <= 0;
  330.     DepPath [8][3] <= 2;
  331.     DepPath [8][4] <= 3;
  332.     DepPath [8][5] <= 1;
  333.     DepPath [8][6] <= 0;
  334.     DepPath [8][7] <= 0;
  335.     DepPath [8][8] <= 2;//end
  336.  
  337.     DepPath_len [0] <= 8;
  338.     DepPath_len [1] <= 4;
  339.     DepPath_len [2] <= 6;
  340.     DepPath_len [3] <= 10;
  341.     DepPath_len [4] <= 12;
  342.     DepPath_len [5] <= 4;
  343.     DepPath_len [6] <= 3;
  344.     DepPath_len [7] <= 8;
  345.     DepPath_len [8] <= 8;
  346.      
  347.     done <= 1;
  348. end
  349.    
  350.      led1 <= (s1);              //Led lights up when s1 has a greater value than 2000
  351.      led2 <= (s2);                  //Led lights up when s2 has a greater value than 2000
  352.      led3 <= (s3);                  //Led lights up when s3 has a greater value than 2000
  353.  
  354.     error <= (s1) - (s3);      //Relative error between sensors s1 and s3: values range from -1 to 1  P
  355.  
  356.     cumulative_error <= cumulative_error + error;  //Adds up the error to give a cumulative error  I
  357.      
  358.     if (cumulative_error > 10)     //Condition to reset the value of cumulative error to 10 if it crosses 10  
  359.     begin
  360.         cumulative_error <= 10;
  361.     end
  362.     if (cumulative_error < -10)    //Condition to reset the value of cumulative error to -10 if it crosses -10  
  363.     begin
  364.         cumulative_error <= -10;
  365.     end
  366.      
  367.      if ((s1==0) && s2 && (s3==0)) //Cumulative error resets to zero when the bot is on line i.e WBW
  368.      begin
  369.             cumulative_error <= 0;  
  370.             hl =0;
  371.             id1 = 0;
  372.      end
  373.      
  374.      difference <= error-preverror;                                  //forms the differential part D
  375.      correction <= ((10*error) + cumulative_error + (2*difference)); // kp = 10, ki = 1, kd =2
  376.       preverror <= error;  // Stores value of current error to previous error so that it can be used in next loop cycle
  377.      
  378.      
  379.      ml1 <= odc - correction + 2;  // PID tuning for motor 1
  380.      ml2 <= odc + correction;  // PID tuning for motor 2
  381.  
  382.      if (ml1>70)      //Resetting value of ml1 to 70 if it crosses 70
  383.      begin
  384.          ml1 <= 70;
  385.      end
  386.      if (ml2>70)      //Resetting value of ml2 to 70 if it crosses 70
  387.      begin
  388.          ml2 <= 70;
  389.      end
  390.      if (ml1<30)       //Resetting value of ml1 to 30 if it becomes less than 30
  391.      begin
  392.          ml1 <= 30;
  393.      end
  394.      if (ml2<30)       //Resetting value of ml2 to 30 if it becomes less than 30
  395.      begin
  396.          ml2 <= 30;
  397.      end
  398.    
  399.     if ((s1==0) && s2 && (s3==0)) //ready for next node, flag resets to zero on line : WBW
  400.     begin
  401.         flag <= 0;
  402.           ml1r <= 0;
  403.           ml2r <= 0;
  404.     end
  405.  
  406.     if (s1 && s2 && s3 && flag == 0)  //detect node
  407.     begin
  408.             id1 = 4;
  409.             hl = 1;
  410.             nodecount <= nodecount + 1;
  411.          flag <= 1;   //node
  412.             flag2 <= 1;  //clr lock
  413.             clr_en <= 1; //color enable 1 disable
  414.     end
  415.    
  416.     if(flag == 1)                                  //if node
  417.     begin
  418.         if(state==0)                                //is arena?
  419.         begin
  420.             n<=pwm(path[path_no][nodecount]);         //follow arena
  421.         end else
  422.         if((state==1))                                //is pick?
  423.         begin
  424.             if(flag4==1)
  425.             begin
  426.                 if((clrs[clrsN][0]==1)&&(clrs[clrsN][1]==0))            //PWM for color red for node 0
  427.                 begin
  428.                     n<=pwm(clrPath[0+rcount][nodecount]);
  429.                 end else if((clrs[clrsN][0]==0)&&(clrs[clrsN][1]==1))           //PWM for color Green for node 0
  430.                 begin
  431.                     n<=pwm(clrPath[3+gcount][nodecount]);
  432.                 end else if((clrs[clrsN][0]==1)&&(clrs[clrsN][1]==1))           //PWM for color Blue for node 0
  433.                 begin
  434.                     n<=pwm(clrPath[6+bcount][nodecount]);
  435.                 end
  436.             end
  437.             if(nodecount==0)                                //is pick?
  438.             begin
  439.                 if((clrs[clrsN][0]==1)&&(clrs[clrsN][1]==0))                    //PWM for color red
  440.                 begin
  441.                     n<=pwm(clrPath[0+rcount][nodecount]);
  442.                     flag4 <= 1;
  443.                 end else if((clrs[clrsN][0]==0)&&(clrs[clrsN][1]==1))           //PWM for color blue
  444.                 begin
  445.                     n<=pwm(clrPath[3+gcount][nodecount]);
  446.                     flag4 <= 1;
  447.                 end else if((clrs[clrsN][0]==1)&&(clrs[clrsN][1]==1))           ////PWM for color green
  448.                 begin
  449.                     n<=pwm(clrPath[6+bcount][nodecount]);
  450.                     flag4 <= 1;
  451.                 end
  452.             end
  453.            
  454.             if ((clrs[clrsN][0]==1)&&(clrs[clrsN][1]==0)&&(rcount==0) && (nodecount== 2 ))              //UART and Electromagnet enabling at color patches
  455.                 begin
  456.                     en<=1;
  457.                           u <= uart(58);
  458.                 end else if((clrs[clrsN][0]==1)&&(clrs[clrsN][1]==0)&&(rcount==1) && (nodecount ==4 ))
  459.                 begin
  460.                     en<=1;
  461.                           u <= uart(22);
  462.                 end else if((clrs[clrsN][0]==1)&&(clrs[clrsN][1]==0)&&(rcount==2) && (nodecount ==4 ))
  463.                 begin
  464.                     en<=1;
  465.                 end else if((clrs[clrsN][0]==0)&&(clrs[clrsN][1]==1)&&(gcount==0) && (nodecount ==2 ))
  466.                 begin
  467.                     en<=1;
  468.                           u <= uart(36);
  469.                 end else if((clrs[clrsN][0]==0)&&(clrs[clrsN][1]==1)&&(gcount==1) && (nodecount ==3 ))
  470.                 begin
  471.                     en<=1;
  472.                 end else if((clrs[clrsN][0]==0)&&(clrs[clrsN][1]==1)&&(gcount==2) && (nodecount ==2 ))
  473.                 begin
  474.                     en<=1;
  475.                 end else if((clrs[clrsN][0]==1)&&(clrs[clrsN][1]==1)&&(bcount==0) && (nodecount ==3 ))
  476.                 begin
  477.                     en<=1;
  478.                           u<= uart(8);
  479.                 end
  480.         end else if((state==2)&&(nodecount<13))
  481.         begin
  482.             n<=pwm(DepPath[dest[clrsN]][nodecount]);
  483.             if(dest[clrsN]==0 && nodecount == 4 )                       //Enabling electromagnet at deposition nodes
  484.                 begin
  485.                     en<=0;
  486.                           clr_reset <= 1;
  487.                 end else if(dest[clrsN]==1 && nodecount ==2 )
  488.                 begin
  489.                     en<=0;
  490.                           clr_reset <= 1;
  491.                           u<= uart(37);
  492.                 end else if(dest[clrsN]==2 && nodecount ==3 )
  493.                 begin
  494.                     en<=0;
  495.                           clr_reset <= 1;
  496.  
  497.                 end else if(dest[clrsN]==3 && nodecount ==5 )
  498.                 begin
  499.                     en<=0;
  500.                           clr_reset <= 1;
  501.                 end else if(dest[clrsN]==4 && nodecount ==6 )
  502.                 begin
  503.                     en<=0;
  504.                           clr_reset <= 1;
  505.                           u<= uart(59);
  506.                 end else if(dest[clrsN]==5 && nodecount ==2 )
  507.                 begin
  508.                     en<=0;
  509.                           clr_reset <= 1;
  510.                 end else if(dest[clrsN]==6 && nodecount ==2 )
  511.                 begin
  512.                     en<=0;
  513.                           clr_reset <= 1;
  514.                           u<= uart(23);
  515.                 end else if(dest[clrsN]==7 && nodecount ==4 )
  516.                 begin
  517.                     en<=0;
  518.                           clr_reset <= 1;
  519.                           u<= uart(9);
  520.                 end else if(dest[clrsN]==8 && nodecount ==4 )
  521.                 begin
  522.                           odc <=58;
  523.                     en<=0;
  524.                           clr_reset <= 1;
  525.                 end
  526.                      else
  527.                      begin
  528.                         clr_reset <= 0;
  529.                      end
  530.         end
  531.            
  532.     end
  533.    
  534.     if(flag == 0)    //assigning values of ml1 and ml2 (line condition) to mo1 and mo2 respectively
  535.     begin
  536.         if(state==0)
  537.         begin
  538.             if((path_no ==0) && (nodecount ==5) )        //enable clr module at patch1
  539.                 begin
  540.                     clr_en1 <= 0;
  541.                     if((Clr != 0)&&(flag2==1))
  542.                     begin
  543.                         clrsN <= clrsN +1;
  544.                         clrs[clrsN+1] <= Clr[2:0];
  545.                         dest[clrsN+1] <= 1;
  546.                         flag2 <= 0;
  547.                     end
  548.             end else if((path_no ==0) && (nodecount ==7) )      //enable clr module only at patches
  549.             begin
  550.                 clr_en1 <= 0;
  551.                 if((Clr != 0)&&(flag2==1))
  552.                 begin
  553.                     clrsN <= clrsN +1;
  554.                     clrs[clrsN+1] <= Clr[2:0];
  555.                     dest[clrsN+1] <= 0;
  556.                     flag2 <= 0;
  557.                 end
  558.             end else if(path_no ==1 && nodecount ==5 )      //enable clr module only at patches
  559.             begin
  560.                 clr_en1 <= 0;
  561.                 if((Clr != 0)&&(flag2==1))
  562.                 begin
  563.                     clrsN <= clrsN +1;
  564.                     clrs[clrsN+1] <= Clr[2:0];
  565.                     dest[clrsN+1] <= 4;
  566.                     flag2 <= 0;
  567.                 end
  568.             end else if(path_no ==1 && nodecount ==6 )      //enable clr module only at patches
  569.             begin
  570.                 clr_en1 <= 0;
  571.                 if((Clr != 0)&&(flag2==1))
  572.                 begin
  573.                     clrsN <= clrsN +1;
  574.                     clrs[clrsN+1] <= Clr[2:0];
  575.                     dest[clrsN+1] <= 3;
  576.                     flag2 <= 0;
  577.                 end
  578.             end else if(path_no ==1 && nodecount ==7 )      //enable clr module only at patches
  579.             begin
  580.                 clr_en1 <= 0;
  581.                 if((Clr != 0)&&(flag2==1))
  582.                 begin
  583.                     clrsN <= clrsN +1;
  584.                     clrs[clrsN+1] <= Clr[2:0];
  585.                     dest[clrsN+1] <= 2;
  586.                     flag2 <= 0;
  587.                 end
  588.             end else if(path_no ==2 && nodecount ==1 )      //enable clr module only at patches
  589.             begin
  590.                 clr_en1 <= 0;
  591.                 if((Clr != 0)&&(flag2==1))
  592.                 begin
  593.                     clrsN <= clrsN +1;
  594.                     clrs[clrsN+1] <= Clr[2:0];
  595.                     dest[clrsN+1] <= 6;
  596.                     flag2 <= 0;
  597.                 end
  598.             end else if(path_no ==2 && nodecount ==6 )      //enable clr module only at patches
  599.             begin
  600.                 clr_en1 <= 0;
  601.                 if((Clr != 0)&&(flag2==1))
  602.                 begin
  603.                     clrsN <= clrsN +1;
  604.                     clrs[clrsN+1] <= Clr[2:0];
  605.                     dest[clrsN+1] <= 5;
  606.                     flag2 <= 0;
  607.                 end
  608.             end else if(path_no ==3 && nodecount == 4)      //enable clr module only at patches
  609.             begin
  610.                 clr_en1 <= 0;
  611.                 if((Clr != 0)&&(flag2==1))
  612.                 begin
  613.                     clrsN <= clrsN +1;
  614.                     clrs[clrsN+1] <= Clr[2:0];
  615.                     dest[clrsN+1] <= 8;
  616.                     flag2 <= 0;
  617.                 end
  618.             end else if(path_no ==3 && nodecount ==6)      //enable clr module only at patches
  619.             begin
  620.                 clr_en1 <= 0;
  621.                 if((Clr != 0)&&(flag2==1))
  622.                 begin
  623.                     clrsN <= clrsN +1;
  624.                     clrs[clrsN+1] <= Clr[2:0];
  625.                     dest[clrsN+1] <= 7;
  626.                     flag2 <= 0;
  627.                 end
  628.             end else
  629.             begin
  630.                 clr_en <= 1;
  631.                 clr_en1 <=1;
  632.             end
  633.         end else
  634.         begin
  635.             clr_en <= 1;
  636.             clr_en1 <= 1;
  637.         end
  638.         if((state==0)&&(nodecount == (path_len[path_no]-1)))       //if about to reach end of path
  639.         begin
  640.             if(clrsN != 0)                           //detected color?
  641.             begin
  642.                 state <= 1;                             //go to pick
  643.             end else if(clrsN == 0)
  644.             begin
  645.                 nodecount <= -5'd1;                      //reset nodecount
  646.                 path_no <= path_no + 1;                  //change path
  647.             end
  648.         end
  649.         if(state==1)                                            //Transition of states for Path(Traversal,Pick,Drop)
  650.         begin
  651.             if((nodecount == path_len[path_no])&&(flag3==0))           
  652.             begin
  653.             nodecount <= -5'd1;
  654.             flag3<=1;
  655.             end
  656.             if((clrs[clrsN][0]==1)&&(clrs[clrsN][1]==0))
  657.             begin
  658.                 if(nodecount == clrPathlen[0+rcount])
  659.                 begin
  660.                 nodecount <= -5'd1;
  661.                 state <= 2;
  662.                 flag4 <= 0;
  663.                 end
  664.             end else if((clrs[clrsN][0]==0)&&(clrs[clrsN][1]==1))
  665.             begin
  666.                 if(nodecount == clrPathlen[3+gcount])
  667.                 begin
  668.                 nodecount <= -5'd1;
  669.                 state <= 2;
  670.                 flag4 <= 0;
  671.                 end
  672.             end else if((clrs[clrsN][0]==1)&&(clrs[clrsN][1]==1))
  673.             begin
  674.                 if(nodecount == clrPathlen[6+bcount])
  675.                 begin
  676.                 nodecount <= -5'd1;
  677.                 state <= 2;
  678.                 flag4 <= 0;
  679.                 end
  680.             end
  681.         end else if(state==2)
  682.         begin
  683.             if(nodecount==DepPath_len[dest[clrsN]])
  684.             begin
  685.                 nodecount<=0;
  686.                 state<=0;
  687.                 path_no<=path_no+1;
  688.                 clrsN<= 0;
  689.                 clrs[0]<=0;
  690.                 clrs[1]<=0;
  691.                 clrs[2]<=0;
  692.                 flag3<=0;
  693.                 rcount <= rcount+1;
  694.             end
  695.             if((dest[clrsN]==7)&&(nodecount==DepPath_len[dest[clrsN]]))
  696.             begin
  697.                 endflag<=1;
  698.             end
  699.         end
  700.         mo1 <= ml1;
  701.         mo1r<= ml1r;
  702.         mo2 <= ml2;
  703.         mo2r<= ml2r;
  704.     end else
  705.     begin            //assigning values of mn1 and mn2 (node condition) to mo1 and mo2 respectively
  706.         mo1 <= mn1;
  707.         mo1r<= mn1r;
  708.         mo2 <= mn2;
  709.         mo2r<= mn2r;
  710.     end
  711.     if(endflag==1)
  712.     begin
  713.         clr_reset <= 3;
  714.         mo1 <= 0;
  715.         mo1r<= 0;
  716.         mo2 <= 0;
  717.         mo2r<= 0;
  718.     end
  719.        
  720. end
  721.        
  722. assign Led1 = led1;
  723. assign Led2 = led2;
  724. assign Led3 = led3;
  725.  
  726. assign id = id1;
  727. assign HL1 = hl;
  728. assign m1 = mo1;
  729. assign m1b= mo1r;
  730. assign m2 = mo2;
  731. assign m2b= mo2r;
  732.  
  733. assign EM = en;
  734. assign Clr_en = clr_en;
  735. assign Clr_r = clr_reset;
  736. endmodule
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement