You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					66 lines
				
				1.2 KiB
			
		
		
			
		
	
	
					66 lines
				
				1.2 KiB
			| 
								 
											6 years ago
										 
									 | 
							
								// **** libc ****
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								void delay(int a) {
							 | 
						||
| 
								 | 
							
								  volatile int i;
							 | 
						||
| 
								 | 
							
								  for (i = 0; i < a; i++);
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								void *memset(void *str, int c, unsigned int n) {
							 | 
						||
| 
								 
											6 years ago
										 
									 | 
							
								  uint8_t *s = str;
							 | 
						||
| 
								 | 
							
								  for (unsigned int i = 0; i < n; i++) {
							 | 
						||
| 
								 | 
							
								    *s = c;
							 | 
						||
| 
								 | 
							
								    s++;
							 | 
						||
| 
								 
											6 years ago
										 
									 | 
							
								  }
							 | 
						||
| 
								 | 
							
								  return str;
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								void *memcpy(void *dest, const void *src, unsigned int n) {
							 | 
						||
| 
								 
											6 years ago
										 
									 | 
							
								  uint8_t *d = dest;
							 | 
						||
| 
								 | 
							
								  const uint8_t *s = src;
							 | 
						||
| 
								 | 
							
								  for (unsigned int i = 0; i < n; i++) {
							 | 
						||
| 
								 | 
							
								    *d = *s;
							 | 
						||
| 
								 | 
							
								    d++;
							 | 
						||
| 
								 | 
							
								    s++;
							 | 
						||
| 
								 
											6 years ago
										 
									 | 
							
								  }
							 | 
						||
| 
								 | 
							
								  return dest;
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								int memcmp(const void * ptr1, const void * ptr2, unsigned int num) {
							 | 
						||
| 
								 | 
							
								  int ret = 0;
							 | 
						||
| 
								 
											6 years ago
										 
									 | 
							
								  const uint8_t *p1 = ptr1;
							 | 
						||
| 
								 | 
							
								  const uint8_t *p2 = ptr2;
							 | 
						||
| 
								 | 
							
								  for (unsigned int i = 0; i < num; i++) {
							 | 
						||
| 
								 | 
							
								    if (*p1 != *p2) {
							 | 
						||
| 
								 
											6 years ago
										 
									 | 
							
								      ret = -1;
							 | 
						||
| 
								 | 
							
								      break;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 
											6 years ago
										 
									 | 
							
								    p1++;
							 | 
						||
| 
								 | 
							
								    p2++;
							 | 
						||
| 
								 
											6 years ago
										 
									 | 
							
								  }
							 | 
						||
| 
								 | 
							
								  return ret;
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								// ********************* IRQ helpers *********************
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								int interrupts_enabled = 0;
							 | 
						||
| 
								 | 
							
								void enable_interrupts(void) {
							 | 
						||
| 
								 | 
							
								  interrupts_enabled = 1;
							 | 
						||
| 
								 | 
							
								  __enable_irq();
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								int critical_depth = 0;
							 | 
						||
| 
								 | 
							
								void enter_critical_section(void) {
							 | 
						||
| 
								 | 
							
								  __disable_irq();
							 | 
						||
| 
								 | 
							
								  // this is safe because interrupts are disabled
							 | 
						||
| 
								 | 
							
								  critical_depth += 1;
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								void exit_critical_section(void) {
							 | 
						||
| 
								 | 
							
								  // this is safe because interrupts are disabled
							 | 
						||
| 
								 | 
							
								  critical_depth -= 1;
							 | 
						||
| 
								 | 
							
								  if ((critical_depth == 0) && interrupts_enabled) {
							 | 
						||
| 
								 | 
							
								    __enable_irq();
							 | 
						||
| 
								 | 
							
								  }
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 |