aboutsummaryrefslogtreecommitdiff
path: root/stm32/inc/memtools.h
blob: b4fa8be9c3c22e1ff179fcfaddfb328eced96bbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
  memtools.h
  June 2019

  Tools for anlysing and debugging memory on stm32.  See also debug_alloc.h
*/

#ifndef __MEMTOOLS__
#define __MEMTOOLS__
void memtools_find_unused( int (*printf_func)(const char *fmt, ...) );
register char * memtools_sp asm ("sp");
void memtools_isnan(float *vec, int n, char *label, int (*printf_func)(const char *fmt, ...));
#endif