Naze32 clone with Frysky receiver
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

toolchain.h 1013B

1234567891011121314151617181920212223242526272829303132333435
  1. /* mbed Microcontroller Library
  2. * Copyright (c) 2006-2013 ARM Limited
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #ifndef MBED_TOOLCHAIN_H
  17. #define MBED_TOOLCHAIN_H
  18. #if defined(TOOLCHAIN_ARM)
  19. #include <rt_sys.h>
  20. #endif
  21. #ifndef FILEHANDLE
  22. typedef int FILEHANDLE;
  23. #endif
  24. #if defined (__ICCARM__)
  25. # define WEAK __weak
  26. # define PACKED __packed
  27. #else
  28. # define WEAK __attribute__((weak))
  29. # define PACKED __attribute__((packed))
  30. #endif
  31. #endif