diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-12-18 12:19:31 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-12-18 12:19:31 +0000 |
commit | 78fdea689982ec0d4fe991e61a0a2e93ce31c32c (patch) | |
tree | a78252a69d5e269038dd8106434f7142fcbf3a28 /testhal/STM32F4xx/IRQ_STORM_FPU/extfunc.c | |
parent | 3aa821af1a657f41cfb284f2ca60a695aa4b08c3 (diff) | |
download | ChibiOS-78fdea689982ec0d4fe991e61a0a2e93ce31c32c.tar.gz ChibiOS-78fdea689982ec0d4fe991e61a0a2e93ce31c32c.tar.bz2 ChibiOS-78fdea689982ec0d4fe991e61a0a2e93ce31c32c.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3638 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32F4xx/IRQ_STORM_FPU/extfunc.c')
-rw-r--r-- | testhal/STM32F4xx/IRQ_STORM_FPU/extfunc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testhal/STM32F4xx/IRQ_STORM_FPU/extfunc.c b/testhal/STM32F4xx/IRQ_STORM_FPU/extfunc.c index 500e378de..c7c4f382c 100644 --- a/testhal/STM32F4xx/IRQ_STORM_FPU/extfunc.c +++ b/testhal/STM32F4xx/IRQ_STORM_FPU/extfunc.c @@ -18,10 +18,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-float getfloat(float par) {
+float ff1(float par) {
return par;
}
-float setfloat(float par1, float par2, float par3, float par4) {
+float ff2(float par1, float par2, float par3, float par4) {
return (par1 + par2) * (par3 + par4);
}
|