the error message is rather short in detail but at least got me where i needed
[Login to see the link]
i have only used micro controllers in c (arduino's, and pi's) but lines 164 ~ 171 in rtc.lua seems a bit odd
for lib in each(libs) do
local libpath --This would be nil if its being declared here right?
for path in each(libpaths) do --so this will just fail right away? (in 2.1.0 this seems to work though???)
libpath = path.."/"..lib
if sys.Directory(libpath).exists then
goto done
end
end
im not sure if that is the cause of RTC not working in studio or cmd but for practical testing i was gonna compile a console app (no modules other than console)
local console = require("console")
console.fullscreen = true
sleep(2000)
console.fullscreen = false