Giter VIP home page Giter VIP logo

Comments (3)

MrPointer avatar MrPointer commented on May 23, 2024

@kukuyok Thanks for the feedback and contribution!
I'll review this sometime soon, it seems really really strange that you get such behavior.
BTW, could you attach your CMakeLists.txt file please?

from arduino-cmake-ng.

kukuyok avatar kukuyok commented on May 23, 2024

Thanks! Sure:

cmake_minimum_required(VERSION 3.8)

set(project_name Cocktail)

## Команда для запуска CMake (run CMake in bash)
## cmake -DCMAKE_TOOLCHAIN_FILE=/home/petro/install/arduino-cmake/cmake/Arduino-Toolchain.cmake -DARDUINO_SDK_PATH=/home/petro/install/arduino-1.8.5 -Darduino_port=/dev/ttyUSB0 ..

## Команда для генерации файлов проекта Eclipse (Eclipse project files generator)
## cmake -G "Eclipse CDT4 - Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug -DCMAKE_ECLIPSE_GENERATE_SOURCE_PROJECT=TRUE -DCMAKE_ECLIPSE_MAKE_ARGUMENTS=-j8 -DCMAKE_TOOLCHAIN_FILE=/home/petro/install/arduino-cmake/cmake/Arduino-Toolchain.cmake -DARDUINO_SDK_PATH=/home/petro/install/arduino-1.8.5 -Darduino_port=/dev/ttyUSB0 ../firmware-ecl

set(CMAKE_VERBOSE_MAKEFILE ON)

## Флаги, компенсирующие косяк в сборке C-файлов Arduino-CMake-NG (temporary cure)
#add_definitions(-DARDUINO_ARCH_AVR -DARDUINO_AVR_MEGA2560 -DARDUINO=10802 -DF_CPU=16000000L)
#set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mmcu=atmega2560")

#set(ARDUINO_CMAKE_SKETCHBOOK_PATH /home/petro/Arduino)

project(${project_name} LANGUAGES C CXX ASM)

set(arduino_board mega)
set(board_cpu atmega2560)
get_board_id(board_id ${arduino_board} ${board_cpu})

add_arduino_executable(${project_name} ${board_id} main.cpp)

find_arduino_library(timer_api_lib arduino-timer-api ${board_id})
link_arduino_library(${project_name} timer_api_lib ${board_id})

set(arduino_port /dev/ttyUSB0)
upload_arduino_target(${project_name} ${board_id} ${arduino_port})

I build it in two ways: with Eclipse project (outside project directory) and directly using bash (within project subdirectory) and have same result.

from arduino-cmake-ng.

kukuyok avatar kukuyok commented on May 23, 2024

+1 more notice: I need to rename library directory from arduino-timer-api to Arduino-timer-api. Otherwise library can't be found.

from arduino-cmake-ng.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.