Resources

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
chmoc_1567941
Level 4
Level 4

what effect happened if i reinitialize recourse which i used in psoc 1 in code???

   

ex.

   

void main(void)

   

{

   

      int i=0; 

   

      ADC_START();

   

      E2PROM_START();

   

      DAC_START();

   

      UART_START(); 

   

      while(1)

   

     {

   

          i=i+5;

   

          if(i==1000)

   

         {

   

             main();

   

         }

   

    }

   

}

0 Likes
1 Solution
Bob_Marlowe
Level 10
Level 10
First like given 50 questions asked 10 questions asked

Your stack will get busted.

   

 

   

Bob

View solution in original post

0 Likes
2 Replies
Bob_Marlowe
Level 10
Level 10
First like given 50 questions asked 10 questions asked

Your stack will get busted.

   

 

   

Bob

0 Likes
chmoc_1567941
Level 4
Level 4

Thanks Bob

0 Likes