Commit Graph

8110 Commits

Author SHA1 Message Date
Émilie Feral
e1b2bb09f0 Change model name: n0101 --> n0200 2019-04-16 10:49:41 +02:00
Émilie Feral
8ee80c5755 [ion] n0100: fix FCC ID 2019-04-16 10:41:07 +02:00
Émilie Feral
0eae6442db [ion] Fix n0100 Makefile 2019-04-16 10:21:29 +02:00
Émilie Feral
cae21c1ffb [scripts] Use 2 differents build directories for n0100 and n0101 2019-04-16 10:12:12 +02:00
Émilie Feral
2e9a3b2fcb Build: Add a target test_external_flash to build tests on external flash
that run on the internal flash
2019-04-15 18:07:23 +02:00
Émilie Feral
5ee829bfe0 [ion] Improve getPlatformEvent (return Events::None instead of relying
on default implementation of Events())
2019-04-15 10:04:17 +02:00
Émilie Feral
158292ec95 [on-boarding] Go to standby when suspended while the active app is
on-boarding
2019-04-15 10:04:11 +02:00
Émilie Feral
744686bcb3 [ion] Power: specific implementations of standby for N0100 and N0101
(N0100 cannot go in standby as no pin is wired to be a wake-up pin)
2019-04-15 10:01:17 +02:00
Émilie Feral
a5919f128c [ion] Power: fix names; Power key actually refers to OnOff key (to avoid
confusing with exponentiation key)
2019-04-12 16:56:57 +02:00
Émilie Feral
694fa34315 [ion] Keyboard: change keys name to more explicit ones 2019-04-12 16:56:57 +02:00
Émilie Feral
b9960220d2 [ion] Events: specify events data according to keyboard layout 2019-04-12 16:56:57 +02:00
Émilie Feral
af0bd758df [ion] Change name keyboard_layout --> layout_keyboard 2019-04-12 16:56:57 +02:00
Léa Saviot
499f0cee21 [hardware_test] Split Screen test into centred screen and dead pixels 2019-04-12 16:43:38 +02:00
Léa Saviot
253833d7e9 [hardware_test] Add comments on LCD data test 2019-04-12 15:59:35 +02:00
Léa Saviot
a77f5173b1 [hardware_test] LCD DATA test 2019-04-12 15:59:35 +02:00
Léa Saviot
197e056d3a [hardware_test] Fix VBlank test 2019-04-12 15:59:35 +02:00
Émilie Feral
7d8e527d51 Merge branch 'version-11' of ssh://git.numworks.com/Epsilon into f7 2019-04-12 15:22:22 +02:00
Émilie Feral
fbdc7a4117 [ion] Battery: change battery thresholds (LOW, EMPTY) 2019-04-12 15:16:53 +02:00
Émilie Feral
da12904873 [ion] Dim Brightness before shutting down when the battery low 2019-04-12 15:16:53 +02:00
Léa Saviot
22b7853dfa [poincare] Fix Layout::replaceWithJuxtapositionOf 2019-04-12 15:16:53 +02:00
Léa Saviot
057939dd3f [apps/calc] displayExactOuputOnly only if the input is store in function
This prevents 1+x->f(x) from displaying 1+x = undef
[[1,2]] + [[1][2]] displays undef
2019-04-12 15:16:53 +02:00
Léa Saviot
50e2d11b1f [apps/calculation] Calculation::DisplayOutput can be Exact/Approx/Both 2019-04-12 15:16:53 +02:00
Ruben Dashyan
3fdac50e2b [escher] Fix ExpressionField::inputViewHeight
Since commit

  [escher] Implement ScrollView::minimalSizeForOptimalDisplay including margins

minimalSizeForOptimalDisplay includes the ScrollView margins.
2019-04-12 15:16:53 +02:00
Léa Saviot
246349e72f [python/turtle] Fix rounding errors
Some horizontal/vertical lines were not properly drawn
Example script:
from math import *
from turtle import *
def a():
  def carre(n):
    fd(n)
    right(90)
    fd(n)
    right(90)
    fd(n)
    right(90)
    fd(n)
    right(90)
  penup()
  goto(-158,109)
  pendown()
  carre(100)
  for j in range(10):
    for i in range(26):
      penup()
      fd(2)
      pendown()
      carre(10)
      penup()
      fd(10)
      pendown()
    penup()
    goto(-158,109-10*(j+1))
    pendown()
2019-04-12 15:16:53 +02:00
Léa Saviot
4298140013 [apps/tests/solver] Test equations + symbolic computation 2019-04-12 15:16:53 +02:00
Léa Saviot
3d8de2246f [poincare/tests] Parametered expressions + symbolic computation 2019-04-12 15:16:53 +02:00
Léa Saviot
b16bd8efa1 [poincare] Use ParameteredExpression in Symbol::shallowReduce 2019-04-12 15:16:53 +02:00
Léa Saviot
2b16b5b2a1 [poincare] Parametered expression 2019-04-12 15:16:53 +02:00
Léa Saviot
6d26fd578c [poincare] Do not replace a symbol if it is an expression's parameter 2019-04-12 15:16:53 +02:00
Léa Saviot
5dc240c94f [apps/calculation] Add tests about no symbolic computation 2019-04-12 15:16:53 +02:00
Léa Saviot
a45cde2fed [calculation/test] Rename some test method arguments 2019-04-12 15:16:53 +02:00
Léa Saviot
41fc08a4d4 [test] Fix tests for unknown symbol is not real 2019-04-12 15:16:53 +02:00
Léa Saviot
ad5da8ad77 [poincare] A non defined symbol is not real
This fixes the equation "conj(x) * x +1", that should not be treated as
a polynom
2019-04-12 15:16:53 +02:00
Léa Saviot
69d90b155d [apps/solver] Test: conj(x)*x+1 should not be considered as polynom 2019-04-12 15:16:53 +02:00
Léa Saviot
8b10c979a0 [test] Fix tests for no symbolic computation 2019-04-12 15:16:53 +02:00
Léa Saviot
3554f441c1 [poincare] Remove symbolic computation 2019-04-12 15:16:53 +02:00
Léa Saviot
503a10afbb [apps] Clean apps/shared/expression_model_handle.cpp 2019-04-12 15:16:53 +02:00
Léa Saviot
4bbda406de [unicode] Use Poincare::SerializationHelper::CodePoint 2019-04-12 15:16:53 +02:00
Léa Saviot
41b2571668 [poincare] MatrixIdentity 2019-04-12 15:16:53 +02:00
Léa Saviot
327f19cb5c [poincarE] Static method name upper case 2019-04-12 15:16:53 +02:00
Léa Saviot
522ecead7b [apps/toolbox] Matrix > Identity command 2019-04-12 15:16:53 +02:00
Léa Saviot
a2448ec807 [escher] Increase TextField::maxBufferSize
In order to be able to write a 10*10 adjacency matrix
2019-04-12 15:16:53 +02:00
Léa Saviot
93a1546201 [apps] Removed unused static inline method 2019-04-12 15:16:53 +02:00
Léa Saviot
82d5ff7799 [ion/unicode] Clean special code points 2019-04-12 15:16:53 +02:00
Léa Saviot
5c9bdbf1f1 [apps/settings] Coding style 2019-04-12 15:16:53 +02:00
Léa Saviot
6e5fbe9966 [apps/settings] Clean unicode layout creations 2019-04-12 15:16:53 +02:00
Léa Saviot
f3675d83df [apps/settings] Factorize layout font sizes 2019-04-12 15:16:53 +02:00
Léa Saviot
7cfeac8387 [apps/reg] Factorize the model layouts fonts 2019-04-12 15:16:53 +02:00
Léa Saviot
93388a0248 [apps/reg] Clean regression models layout creation 2019-04-12 15:16:53 +02:00
Léa Saviot
cbcfa35110 [unicode] Use 3BC symbol instead of B5 for the glyph Mu.
NFKD normalization transforms uniB5 into uni3BC.
2019-04-12 15:16:53 +02:00