ELEC2645 (2018/19) / Mbed 2 deprecated el17cd

Dependencies:   mbed

Committer:
el17cd
Date:
Fri Feb 22 13:45:34 2019 +0000
Revision:
2:a5bc7b3779f7
Parent:
1:044238f7bdda
Child:
4:759a5c34e239
Working but getting Empty Execution region description for region RW_IRAM1 compiler error when adding lcd in rasteriser;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
el17cd 2:a5bc7b3779f7 1 #include "mbed.h"
el17cd 2:a5bc7b3779f7 2
el17cd 1:044238f7bdda 3 class Face {
el17cd 1:044238f7bdda 4 private:
el17cd 1:044238f7bdda 5 float verticies[4][3];
el17cd 1:044238f7bdda 6 public:
el17cd 1:044238f7bdda 7 Face(float (&PointArray)[4][3]);
el17cd 1:044238f7bdda 8 float GetVertexValue(int vertex, int axis);
el17cd 2:a5bc7b3779f7 9 };