stm32f4_sysmem.c 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /**
  2. *****************************************************************************
  3. **
  4. ** File : sysmem.c
  5. **
  6. ** Author : Ac6
  7. **
  8. ** Abstract : System Workbench Minimal System Memory calls file
  9. **
  10. ** For more information about which c-functions
  11. ** need which of these lowlevel functions
  12. ** please consult the Newlib libc-manual
  13. **
  14. ** Environment : System Workbench for MCU
  15. **
  16. ** Distribution: The file is distributed “as is,” without any warranty
  17. ** of any kind.
  18. **
  19. *****************************************************************************
  20. **
  21. ** <h2><center>&copy; COPYRIGHT(c) 2014 Ac6</center></h2>
  22. **
  23. ** Redistribution and use in source and binary forms, with or without modification,
  24. ** are permitted provided that the following conditions are met:
  25. ** 1. Redistributions of source code must retain the above copyright notice,
  26. ** this list of conditions and the following disclaimer.
  27. ** 2. Redistributions in binary form must reproduce the above copyright notice,
  28. ** this list of conditions and the following disclaimer in the documentation
  29. ** and/or other materials provided with the distribution.
  30. ** 3. Neither the name of Ac6 nor the names of its contributors
  31. ** may be used to endorse or promote products derived from this software
  32. ** without specific prior written permission.
  33. **
  34. ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  35. ** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  36. ** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  37. ** DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  38. ** FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  39. ** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  40. ** SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  41. ** CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  42. ** OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  43. ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  44. **
  45. *****************************************************************************
  46. */
  47. /* Includes */
  48. #include <errno.h>
  49. #include <stdio.h>
  50. /* Variables */
  51. //Uncomment following if needed - commented out for now as not used and causes warning
  52. //extern int errno;
  53. register char * stack_ptr asm("sp");
  54. /* Functions */
  55. /**
  56. _sbrk
  57. Increase program data space. Malloc and related functions depend on this
  58. **/
  59. caddr_t _sbrk(int incr)
  60. {
  61. extern char end asm("end");
  62. static char *heap_end;
  63. char *prev_heap_end;
  64. if (heap_end == 0)
  65. heap_end = &end;
  66. prev_heap_end = heap_end;
  67. if (heap_end + incr > stack_ptr)
  68. {
  69. errno = ENOMEM;
  70. return (caddr_t) -1;
  71. }
  72. heap_end += incr;
  73. return (caddr_t) prev_heap_end;
  74. }