view python/tests/testcode.c @ 124:d38729d35c4d stm32f4discovery flash with python

New implementation of hexfile viewer
author Windel Bouwman
date Sat, 12 Jan 2013 15:43:10 +0100
parents f2d980eef509
children
line wrap: on
line source


int Calculate(int a, int b, int c)
{
   int d, e;
   d = a + b;
   e = d * c - a;
   return a + b + c + d + e;
}